Created
October 27, 2020 07:28
-
-
Save gsrathoreniks/af82e66f852d8478ac5155036208d1f1 to your computer and use it in GitHub Desktop.
Android Application Class in Kotlin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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