You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

19 lines
378 B

// Copyright 2019-2020 The Hush developers
package org.myhush.silentdragon
import android.app.Application
import android.content.Context
class SilentDragonApp : Application() {
override fun onCreate() {
super.onCreate()
appContext = applicationContext
}
companion object {
var appContext: Context? = null
private set
}
}