I am writing a Xamarin.Android application using Visual Studio 2022. Unfortunately, the .abb package is required for new applications. This is where the problem with changing the language in the application begins. I am using ContextWrapper to change the language. I have read for the language to work properly in the application, I have to add this code to the BundleConfig.json file:
android {
bundle {
language {
// Specifies that the app bundle should not support
// configuration APKs for language resources. These
// resources are instead packaged with each base and
// dynamic feature APK.
enableSplit = false
}
}
}
Unfortunately, I have nowhere found on the internet how to edit this file and where to find it. Please help.