package jackall.devrealm import android.app.Application /** * Created by matsumoto_k on 2017/11/08. */ class App : Application() { companion object { lateinit var instance: App private set } override fun onCreate() { super.onCreate() instance = this } }