I am using the answer here: Android support library increases APK size a lot
To reduce the apk size by removing localizations I am not using from the support library as follows:
defaultConfig {
...
resConfig "en"
}
And it work :)
When I upload my apk to Google Play I believe that I would see
Localizations default
instead of
Localizations default + 73 languages
If this is true, will limiting the Localizations affect/reduce the countries I can distribute too?
To put it clearer, if my apk is localized to english only can I still distribute to all countries?