diff --git a/common/src/debug/java/de/nicidienase/chaosflix/ChaosflixApplication.kt b/common/src/debug/java/de/nicidienase/chaosflix/ChaosflixApplication.kt index 947a92fa..ed63ca8e 100644 --- a/common/src/debug/java/de/nicidienase/chaosflix/ChaosflixApplication.kt +++ b/common/src/debug/java/de/nicidienase/chaosflix/ChaosflixApplication.kt @@ -8,12 +8,12 @@ class ChaosflixApplication : Application() { override fun onCreate() { super.onCreate() - if (LeakCanary.isInAnalyzerProcess(this)) { - // This process is dedicated to LeakCanary for heap analysis. - // You should not init your app in this process. - return; - } - LeakCanary.install(this); Stetho.initializeWithDefaults(this) + if (LeakCanary.isInAnalyzerProcess(this)) { + // This process is dedicated to LeakCanary for heap analysis. + // You should not init your app in this process. + return; + } +// LeakCanary.install(this); } }