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

14 lines
359 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-12 23:59:22 +01:00
class App : MultiDexApplication() {
override fun onCreate() {
super.onCreate()
2017-11-30 19:38:07 +01:00
checkUseEnglish()
2017-11-07 17:31:40 +01:00
Reprint.initialize(this)
}
}