Skip to content

Instantly share code, notes, and snippets.

View xmellado's full-sized avatar

Xavier Mellado Esteban xmellado

View GitHub Profile
@paraya3636
paraya3636 / KotlinAndroidMainApplication
Last active October 7, 2023 23:07
Kotlin Android MainApplication class for global applicationContext.
// Not object class. AndroidManifest.xml error happen.
class MainApplication : Application() {
init {
instance = this
}
companion object {
private var instance: MainApplication? = null