Add supported languages to app language list (#158)

This commit is contained in:
Kirill Kamakin
2023-07-03 15:50:00 +02:00
committed by GitHub
parent 9e56efa8da
commit 2bc2bb76e4
2 changed files with 5 additions and 1 deletions

View File

@@ -20,7 +20,7 @@ android {
versionName = "0.3.13" versionName = "0.3.13"
testInstrumentationRunner = "gq.kirmanak.mealient.MealientTestRunner" testInstrumentationRunner = "gq.kirmanak.mealient.MealientTestRunner"
testInstrumentationRunnerArguments += mapOf("clearPackageData" to "true") testInstrumentationRunnerArguments += mapOf("clearPackageData" to "true")
resourceConfigurations += listOf("en", "es", "ru") resourceConfigurations += listOf("en", "es", "ru", "fr", "nl", "pt", "de")
} }
signingConfigs { signingConfigs {

View File

@@ -3,4 +3,8 @@
<locale android:name="en-US" /> <locale android:name="en-US" />
<locale android:name="es" /> <locale android:name="es" />
<locale android:name="ru" /> <locale android:name="ru" />
<locale android:name="nl" />
<locale android:name="de" />
<locale android:name="fr" />
<locale android:name="pt-PT" />
</locale-config> </locale-config>