Language change is working before uploading to Google Play Store (xml method values-en, values-fr, .......)
but not after uploading to play store (in aab , not for apk).
in stackoverflow said ,use `enableSplit = false` to resolve this problem
https://stackoverflow.com/a/54862243/12361096
Is it possible to use this function in b4a ?
but not after uploading to play store (in aab , not for apk).
in stackoverflow said ,use `enableSplit = false` to resolve this problem
B4X:
android {
//... removed for brevity
bundle {
language {
enableSplit = false
}
}
}
Is it possible to use this function in b4a ?