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 July 20, 2024 03:28
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