I have string resources:
- values\strings.xml (contains default English strings);
- values-de\strings.xml (contains German strings);
Everything was OK till I updated Android Studio to the latest version 3.2. Now lint gives me tons of errors regarding default string resource file (values\strings.xml):
".... is not translated in "en" (English)"
What is the best solution? I don't want to create another folder values-en which would contain just a copy of my default values\strings.xml resource...
You have to add
disable 'MissingTranslation'
in app level gradle.