fix(android): wrong app name for the french version #830 (#944)

This commit is contained in:
Gorom 2023-12-11 15:33:21 +01:00 committed by GitHub
parent e4eb0e2596
commit 0def714af2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -78,19 +78,19 @@ android {
productFlavors {
nightly {
dimension "default"
resValue "string", "app_name", "Spotube Nightly"
resValue "string", "app_name_en", "Spotube Nightly"
applicationIdSuffix ".nightly"
versionNameSuffix "-nightly"
}
dev {
dimension "default"
resValue "string", "app_name", "Spotube Dev"
resValue "string", "app_name_en", "Spotube Dev"
applicationIdSuffix ".dev"
versionNameSuffix "-dev"
}
stable {
dimension "default"
resValue "string", "app_name", "Spotube"
resValue "string", "app_name_en", "Spotube"
}
}

View File

@ -18,7 +18,7 @@
<application
android:allowBackup="false"
android:fullBackupContent="false"
android:label="@string/app_name"
android:label="@string/app_name_en"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher"
android:usesCleartextTraffic="true"