Right now, I am building an Android app using Kotlin. This app supports multiple languages that I put my strings into strings.xml. I've been developed the app using Locale to change the language.
This is my resources tree:
res
-values
--strings.xml
-values-ko-rKR
--strings.xml
I want my debug app using the English version, while my release app using the Korean version. Is there any way to do that on the build settings? If I can't do that, where can I set my default locale easily?
To set other locale than the one set in the device setting, just add the debug/release check:
Inside Your Application class:
Add a ParentActivity and make all your app's activities inherit from this one
And finally add this line to AndroidManifest inside all the activity tags: