disable leakCanary until casty-leak is fixed

This commit is contained in:
Felix 2019-04-26 18:07:46 +02:00
parent 55d7250df9
commit 7e998fdd63

View file

@ -8,12 +8,12 @@ class ChaosflixApplication : Application() {
override fun onCreate() {
super.onCreate()
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);
Stetho.initializeWithDefaults(this)
// LeakCanary.install(this);
}
}