Skip to content

Commit

Permalink
fix(android): wrong app name for the french version #830 (#944)
Browse files Browse the repository at this point in the history
  • Loading branch information
Go-rom authored Dec 11, 2023
1 parent e4eb0e2 commit 0def714
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}

Expand Down
2 changes: 1 addition & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 0def714

Please sign in to comment.