locale_config.xml: declare supported locales

This commit is contained in:
Andreas Schildbach 2022-09-03 11:11:34 +02:00
parent ea43d90fb9
commit 53990a285e
2 changed files with 6 additions and 0 deletions

View file

@ -62,6 +62,7 @@
android:allowBackup="true"
android:icon="@mipmap/ic_oeffi_stations_color_48dp"
android:label="@string/app_name"
android:localeConfig="@xml/locale_config"
android:networkSecurityConfig="@xml/network_security_config"
android:theme="@style/My.Theme">

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="en" />
<locale android:name="de" />
</locale-config>