android: Declare languages in locales_config.xml

This is required to make per-app language swithcing possible on Android 13.
This commit is contained in:
FearlessTobi 2023-06-13 19:59:25 +02:00
parent a550fe7a7d
commit 00fe302e60
2 changed files with 18 additions and 0 deletions

View File

@ -24,6 +24,7 @@ SPDX-License-Identifier: GPL-3.0-or-later
android:hasFragileUserData="true"
android:supportsRtl="true"
android:isGame="true"
android:localeConfig="@xml/locales_config"
android:banner="@drawable/tv_banner"
android:extractNativeLibs="true"
android:fullBackupContent="@xml/data_extraction_rules"

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<locale-config xmlns:android="http://schemas.android.com/apk/res/android">
<locale android:name="en" /> <!-- English (default) -->
<locale android:name="de" /> <!-- German -->
<locale android:name="es" /> <!-- Spanish -->
<locale android:name="fr" /> <!-- French -->
<locale android:name="it" /> <!-- Italian -->
<locale android:name="ja" /> <!-- Japanese -->
<locale android:name="nb" /> <!-- Norwegian Bokmal -->
<locale android:name="pl" /> <!-- Polish -->
<locale android:name="pt-rBR" /> <!-- Portuguese (Brazil) -->
<locale android:name="pt-RPT" /> <!-- Portuguese (Portugal) -->
<locale android:name="ru" /> <!-- Russian -->
<locale android:name="uk" /> <!-- Ukranian -->
<locale android:name="zh-rCN" /> <!-- Chinese (China) -->
<locale android:name="zh-rTW" /> <!-- Chinese (Taiwan) -->
</locale-config>