12 lines
226 B
Kotlin
12 lines
226 B
Kotlin
package com.nothing.camera2magic
|
|
|
|
import android.content.Context
|
|
|
|
object GlobalState {
|
|
@Volatile
|
|
lateinit var appContext: Context
|
|
@Volatile
|
|
var packageName: String = ""
|
|
@Volatile
|
|
var activityCount = 0
|
|
} |