When I uploaded an update to an app to Google Play today it showed that we suddenly support 63 new languages, which we don't. Any idea what is causing this?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
You probably have added a new library, such as Google Play Services, to your package which is adding its own resource files for additional languages.
If you are using Android Studio, you can set resConfigs
to disable unsupported locales. See Putting Your APKs on Diet -> Minimize resources configurations by Cyril Mottier:
defaultConfig {
// ...
resConfigs "en", "de", "fr", "it"
}