13 lines
220 B
Kotlin
13 lines
220 B
Kotlin
package com.example.myapplication
|
|
|
|
import android.content.Context
|
|
|
|
object AppContext {
|
|
lateinit var context: Context
|
|
private set
|
|
|
|
fun init(ctx: Context) {
|
|
context = ctx.applicationContext
|
|
}
|
|
}
|