Android remove localizations

前端 未结 2 1645
予麋鹿
予麋鹿 2021-01-19 00:30

My app at Play Store does not have any localizations other than the default: English (United States). This time I created a new apk to update it. And it uses an

相关标签:
2条回答
  • 2021-01-19 00:36

    In build.gradle, add resConfigs to limit the languages:

    android {
        defaultConfig {
            // other configuration here
            resConfigs "en"
        }
    }
    
    0 讨论(0)
  • 2021-01-19 00:38

    Don't worry about it: the message is only seen to you as a developer and not seen by any user. The only clue that you'd support a different language is if you translated your Google Play store listing. AppCompat strings are solely used for content descriptions used for accessibility systems such as Talkback so they won't be visible to the vast majority of users of your app.

    0 讨论(0)
提交回复
热议问题