added ability to select app language in android settings

This commit is contained in:
Nico
2025-05-29 15:18:48 +02:00
parent 2a2aebbd0b
commit 104c06a1b7
2 changed files with 7 additions and 0 deletions

View File

@@ -7,6 +7,7 @@
<application
android:label="LUPUS"
android:name="${applicationName}"
android:localeConfig="@xml/locales_config"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"

View File

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