Support locales config

This commit is contained in:
Mygod
2022-07-11 16:30:52 -04:00
parent d3d146f55b
commit d77cf3c78d
2 changed files with 9 additions and 0 deletions

View File

@@ -62,6 +62,7 @@
android:hasFragileUserData="true" android:hasFragileUserData="true"
android:icon="@mipmap/ic_launcher" android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round" android:roundIcon="@mipmap/ic_launcher_round"
android:localeConfig="@xml/locales_config"
android:supportsRtl="true" android:supportsRtl="true"
android:theme="@style/AppTheme" android:theme="@style/AppTheme"
tools:ignore="GoogleAppIndexingWarning"> tools:ignore="GoogleAppIndexingWarning">

View File

@@ -0,0 +1,8 @@
<?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="it"/>
<locale android:name="ru"/>
<locale android:name="zh-CN"/>
<locale android:name="zh-TW"/>
</locale-config>