mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2025-01-21 07:37:59 +01:00
13 lines
352 B
Kotlin
13 lines
352 B
Kotlin
package com.simplemobiletools.gallery
|
|
|
|
import androidx.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)
|
|
}
|
|
}
|