Android doc for Groovy (https://developer.android.com/guide/topics/resources/app-languages)
android {
...
defaultConfig {
resourceConfigurations += ["en", "en-rGB", "fr", "ja", "b+zh+Hans+MO", "b+zh+Hant+MO"]
}
}
How to replace it after migration to Kotlin DSL (https://developer.android.com/build/migrate-to-kotlin-dsl)?
With this:
android {
...
defaultConfig {
resourceConfigurations += listOf("en", "en-rGB", "fr", "ja", "b+zh+Hans+MO", "b+zh+Hant+MO")
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With