0
0
mirror of https://github.com/mediathekview/zapp.git synced 2024-09-20 04:12:14 +02:00

#327 Make per-app language selection available in Android 13

This commit is contained in:
Christine Coenen 2022-10-23 14:52:20 +02:00
parent 118bc4315c
commit af41b3015d
4 changed files with 8 additions and 1 deletions

View File

@ -16,6 +16,7 @@ android {
versionCode 61
versionName "7.0.4"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
resConfigs "de", "en"
}
compileOptions {

View File

@ -23,6 +23,7 @@
android:fullBackupContent="@xml/full_backup_content"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:localeConfig="@xml/locales_config"
android:resizeableActivity="true"
android:supportsRtl="false"
android:theme="@style/AppTheme"

View File

@ -1,5 +1,5 @@
# v-next
* Unterstützung für Android 13
* Unterstützung für Android 13 (Monochromes Icon, Per-App Sprachauswahl)
* Nullwerte bei der Anzahl der Sucherergebnisse repariert
# 7.0.4

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<locale-config xmlns:android="http://schemas.android.com/apk/res/android">
<locale android:name="de" />
<locale android:name="en" />
</locale-config>