mirror of
https://github.com/fromchat-messenger/app.git
synced 2026-09-23 03:25:06 +03:00
11 lines
218 B
Kotlin
11 lines
218 B
Kotlin
package ru.fromchat
|
|
|
|
import android.app.Application
|
|
import com.pr0gramm3r101.utils.UtilsLibrary
|
|
|
|
class App: Application() {
|
|
override fun onCreate() {
|
|
super.onCreate()
|
|
UtilsLibrary.init(this)
|
|
}
|
|
} |