I have developed an Android application with a feature that allows you to change the entire App locale language. It works perfectly in Debug mode. Unfortunately after the release in the Play Store this feature no longer works.
I have already seen these questions, where they say that it would be enough to edit the build.gradle file.
Android App Locale Not Working on Play Store Release
Android App Bundle with in-app locale change
android {
//...
//... removed for brevity
bundle {
language {
enableSplit = false
}
}
}
Unfortunately I developed it in Xamarin.Android and not in Android Studio and so I have no idea how I could modify that file and achieve the same result. I also do not want to support download on demand.
Could anyone help me please? Thanks in advance