add LeakCanary and storage permission back

This commit is contained in:
tibbi
2018-01-14 19:58:25 +01:00
parent de29a33de0
commit 68b9c4f5d2
3 changed files with 6 additions and 4 deletions

View File

@ -2,16 +2,17 @@ package com.simplemobiletools.contacts
import android.app.Application
import com.simplemobiletools.commons.extensions.checkUseEnglish
import com.squareup.leakcanary.LeakCanary
class App : Application() {
override fun onCreate() {
super.onCreate()
/*if (BuildConfig.DEBUG) {
if (BuildConfig.DEBUG) {
if (LeakCanary.isInAnalyzerProcess(this)) {
return
}
LeakCanary.install(this)
}*/
}
checkUseEnglish()
}