Created
May 30, 2020 05:15
-
-
Save juliuscanute/fa08bd5e719f03bd5b4d917c9ff44e2b to your computer and use it in GitHub Desktop.
Start MultiConfig Android
This file contains 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 SampleApp : Application() { | |
override fun onCreate() { | |
super.onCreate() | |
startMultiConfig( | |
context = this, | |
intent = Intent(this@SampleApp, MainActivity::class.java) | |
) { | |
multiConfig(configuration = configuration()) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment