mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-28 07:27:59 +01:00
13 lines
359 B
Kotlin
13 lines
359 B
Kotlin
package com.simplemobiletools.gallery
|
|
|
|
import android.support.multidex.MultiDexApplication
|
|
import com.github.ajalt.reprint.core.Reprint
|
|
import com.simplemobiletools.commons.extensions.checkUseEnglish
|
|
|
|
class App : MultiDexApplication() {
|
|
override fun onCreate() {
|
|
super.onCreate()
|
|
checkUseEnglish()
|
|
Reprint.initialize(this)
|
|
}
|
|
}
|