This commit is contained in:
pengxiaolong
2026-01-15 13:01:31 +08:00
parent c1a80dd4cf
commit a1fbc6417f
219 changed files with 25793 additions and 951 deletions

View File

@@ -0,0 +1,12 @@
package com.example.myapplication
import android.content.Context
object AppContext {
lateinit var context: Context
private set
fun init(ctx: Context) {
context = ctx.applicationContext
}
}