updating kotlin, gradle, commons, removing LeakCanary

This commit is contained in:
tibbi
2018-09-10 17:51:26 +02:00
parent 68f1cbeb7f
commit 3ee6bbe911
3 changed files with 5 additions and 20 deletions

View File

@ -3,18 +3,10 @@ package com.simplemobiletools.filemanager
import android.app.Application
import com.github.ajalt.reprint.core.Reprint
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)
}
checkUseEnglish()
Reprint.initialize(this)
}