FossifyGallery/app/src/main/kotlin/com/simplemobiletools/gallery/App.kt

22 lines
575 B
Kotlin
Raw Normal View History

package com.simplemobiletools.gallery
2017-11-12 23:59:22 +01:00
import android.support.multidex.MultiDexApplication
import com.github.ajalt.reprint.core.Reprint
2017-11-30 19:38:07 +01:00
import com.simplemobiletools.commons.extensions.checkUseEnglish
2017-11-27 20:32:57 +01:00
import com.squareup.leakcanary.LeakCanary
2017-11-12 23:59:22 +01:00
class App : MultiDexApplication() {
override fun onCreate() {
super.onCreate()
2017-12-01 23:35:36 +01:00
if (BuildConfig.DEBUG) {
if (LeakCanary.isInAnalyzerProcess(this)) {
return
}
LeakCanary.install(this)
2017-11-27 20:32:57 +01:00
}
2017-11-07 17:31:40 +01:00
2017-11-30 19:38:07 +01:00
checkUseEnglish()
2017-11-07 17:31:40 +01:00
Reprint.initialize(this)
}
}