Feature: Hot Update Translation (#32)

* update translation data from repo
This commit is contained in:
chinosk
2024-06-27 10:54:17 -05:00
committed by GitHub
parent 91dea41ca2
commit dbb7c8d8f6
21 changed files with 999 additions and 46 deletions

View File

@@ -7,6 +7,7 @@
<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:usesCleartextTraffic="true"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
@@ -42,6 +43,16 @@
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
</application>
</manifest>