INNER CODE UNIT · Kotlin
App
Gedsh/InviZible · tordnscrypt/src/main/java/pan/alexander/tordnscrypt/App.kt:38
class App : Application() {
val daggerComponent: AppComponent by lazy {
DaggerAppComponent
.builder()
.appContext(applicationContext)
.build()
}
val subcomponentsManager by lazy {
SubcomponentsManager(this, daggerComponent)
}
@Volatile
var isAppForeground: Boolean = false
companion object {
@JvmStatic