I live in Canada but decided to publish a simple app with only Korean language.
When I try to export this app into .apk file, I get bunch of Lint warnings that
my strings.xml and arrays.xml are not translated
Lint gives me two suggestions:
If the string should not be translated, you can add the attribute translatable="false" on the element, or you can define all your non-translatable strings in a resource file called donottranslate.xml. Or, you can ignore the issue with a tools:ignore="MissingTranslation" attribute.
You can tell lint (and other tools) which language is the default language in your res/values/ folder by specifying tools:locale="languageCode" for the root element in your resource file. (The tools prefix refers to the namespace declaration http://schemas.android.com/tools.
However, i dont know where to put tools:ignore statements. I tried several places in my strings.xml none seems to work. Also the website link to http://schemas.android.com/tools not working for me. I guess the language code for korean is ko.