Support core status check and force restart Optimize proxies page and access page Update flutter and pub dependencies Update go version Optimize more details
14 lines
299 B
Kotlin
14 lines
299 B
Kotlin
package com.follow.clash
|
|
|
|
import android.app.Application
|
|
import android.content.Context
|
|
import com.follow.clash.common.GlobalState
|
|
|
|
class Application : Application() {
|
|
|
|
override fun attachBaseContext(base: Context?) {
|
|
super.attachBaseContext(base)
|
|
GlobalState.init(this)
|
|
}
|
|
}
|