removing LeakCanary

This commit is contained in:
tibbi
2018-09-01 23:34:04 +02:00
parent e4eb7385dd
commit 63d3702af3
2 changed files with 0 additions and 12 deletions

View File

@ -3,16 +3,11 @@ package com.simplemobiletools.contacts
import android.app.Application
import com.facebook.stetho.Stetho
import com.simplemobiletools.commons.extensions.checkUseEnglish
import com.squareup.leakcanary.LeakCanary
class App : Application() {
override fun onCreate() {
super.onCreate()
if (BuildConfig.DEBUG) {
if (LeakCanary.isInAnalyzerProcess(this)) {
return
}
LeakCanary.install(this)
Stetho.initializeWithDefaults(this)
}