Skip to content

Instantly share code, notes, and snippets.

@gsrathoreniks
Created October 27, 2020 07:28
Show Gist options
  • Save gsrathoreniks/af82e66f852d8478ac5155036208d1f1 to your computer and use it in GitHub Desktop.
Save gsrathoreniks/af82e66f852d8478ac5155036208d1f1 to your computer and use it in GitHub Desktop.
Android Application Class in Kotlin
class MyApplication : Application(){
//Optional override
override fun onCreate() {
super.onCreate()
// Write initialization logic here!
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment