On our Android app we're passing strings resources via build script using the resValue
, something like this:
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
resValue "string", "foo", "foo_value"
resValue "string", "bar", "bar_value"
... etc
How to add translated version of those strings. To go on values-de
, values-ch
, values-sp
, etc folders?