Android localization restrictions

I am trying to publish an application that is currently configured for English only. When I upload my application to the Play Store, does it speak of localization for "Default + 49 languages"? How to disable everything except English?

+5
source share
3 answers

When you publish your application, if you wrote it only in English, it will be published only in English.

If you want to limit your application to certain countries, you can do this: on the developer’s console you have the tab "PRICES AND DISTRIBUTION". You can choose the countries there. Here's what it looks like:

enter image description here

+1
source

. , :

, (, Google Play), apk !

apk, Google Play Store. Android- Apk. cd ~ ANDROID_HOME/build-tools/19.0.1

./aapt d badging <apk>

, , , , . , .

, . . , gradle maven , .

+5

, , , , , , .

, "aapt", /.

ant 'build.xml' sdk. ( aapt.ignore.assets)


:

!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~

.

. es-US ( -es-rUS), :

!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~:<dir>*-es-rUS

, -es-rUS ( , , <dir>*-eS-RuS )


:

aapt.exe <All of your normal commands for packaging>  --ignore-assets <exclude-list>

Ant/Eclipse ant.properties :

aapt.ignore.assets=<exclude-list>
0

All Articles