From b0774febb18186da6d52d12a37b9e8e8fde9a351 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Tue, 21 Apr 2020 13:31:52 +0530 Subject: Application: only install logging tree in debug features build We should be at a stability level now that does not require logging in prod Signed-off-by: Harsh Shandilya --- app/src/main/java/com/zeapo/pwdstore/Application.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/src/main') diff --git a/app/src/main/java/com/zeapo/pwdstore/Application.kt b/app/src/main/java/com/zeapo/pwdstore/Application.kt index 166d2b3a..506fff9d 100644 --- a/app/src/main/java/com/zeapo/pwdstore/Application.kt +++ b/app/src/main/java/com/zeapo/pwdstore/Application.kt @@ -21,8 +21,8 @@ class Application : android.app.Application(), SharedPreferences.OnSharedPrefere override fun onCreate() { super.onCreate() - plant(DebugTree()) if (BuildConfig.ENABLE_DEBUG_FEATURES) { + plant(DebugTree()) WhatTheStack(this).init() } prefs = PreferenceManager.getDefaultSharedPreferences(this) -- cgit v1.2.3