33 lines
908 B
Kotlin
33 lines
908 B
Kotlin
|
|
package eu.kanade.tachiyomi
|
||
|
|
|
||
|
|
import android.app.Application
|
||
|
|
import android.content.Context
|
||
|
|
//import android.content.res.Configuration
|
||
|
|
//import android.support.multidex.MultiDex
|
||
|
|
//import timber.log.Timber
|
||
|
|
import uy.kohesive.injekt.Injekt
|
||
|
|
import uy.kohesive.injekt.api.InjektScope
|
||
|
|
import uy.kohesive.injekt.registry.default.DefaultRegistrar
|
||
|
|
|
||
|
|
open class App : Application() {
|
||
|
|
|
||
|
|
override fun onCreate() {
|
||
|
|
super.onCreate()
|
||
|
|
Injekt = InjektScope(DefaultRegistrar())
|
||
|
|
Injekt.importModule(AppModule(this))
|
||
|
|
|
||
|
|
// if (BuildConfig.DEBUG) Timber.plant(Timber.DebugTree())
|
||
|
|
}
|
||
|
|
|
||
|
|
override fun attachBaseContext(base: Context) {
|
||
|
|
super.attachBaseContext(base)
|
||
|
|
// if (BuildConfig.DEBUG) {
|
||
|
|
// MultiDex.install(this)
|
||
|
|
// }
|
||
|
|
}
|
||
|
|
|
||
|
|
// override fun onConfigurationChanged(newConfig: Configuration) {
|
||
|
|
// super.onConfigurationChanged(newConfig)
|
||
|
|
// }
|
||
|
|
}
|