Commit 6b66c8b6 authored by Bartek Fabiszewski's avatar Bartek Fabiszewski
Browse files

Generate locales manually

parent e37e50a8
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -18,6 +18,7 @@ android {
        targetSdkVersion 35
        versionCode 311
        versionName '3.11'
        resConfigs "en", "ca", "cs", "de", "el", "es", "eu", "fi", "fr", "gl", "it", "ja", "pl", "pt-rBR", "ru", "sk", "zh-rCN"
    }

    buildTypes {
@@ -42,9 +43,6 @@ android {
    buildFeatures {
        buildConfig true
    }
    androidResources {
        generateLocaleConfig true
    }
}

configurations.configureEach {
+2 −1
Original line number Diff line number Diff line
@@ -47,7 +47,8 @@
        android:theme="@style/AppTheme"
        tools:ignore="UnusedAttribute"
        android:enableOnBackInvokedCallback="true"
        android:dataExtractionRules="@xml/data_extraction_rules">
        android:dataExtractionRules="@xml/data_extraction_rules"
        android:localeConfig="@xml/locales_config">
        <activity
            android:name=".ui.MainActivity"
            android:exported="true">
+0 −1
Original line number Diff line number Diff line
unqualifiedResLocale=en
+20 −0
Original line number Diff line number Diff line
<?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="ca"/>
    <locale android:name="cs"/>
    <locale android:name="de"/>
    <locale android:name="el"/>
    <locale android:name="es"/>
    <locale android:name="eu"/>
    <locale android:name="fi"/>
    <locale android:name="fr"/>
    <locale android:name="gl"/>
    <locale android:name="it"/>
    <locale android:name="ja"/>
    <locale android:name="pl"/>
    <locale android:name="pt-BR"/>
    <locale android:name="ru"/>
    <locale android:name="sk"/>
    <locale android:name="zh-CN"/>
</locale-config>
 No newline at end of file