[Android] added (DEV) to dev flavor app name

This commit is contained in:
Vadim 2023-11-18 20:53:34 +01:00
parent e340327e32
commit 546dd46f9a
2 changed files with 3 additions and 1 deletions

View file

@ -76,11 +76,13 @@ android {
productFlavors {
dev {
applicationId "com.vodemn.lightmeter.dev"
resValue "string", "app_name", "Lightmeter (DEV)"
dimension "app"
signingConfig signingConfigs.release
}
prod {
applicationId "com.vodemn.lightmeter"
resValue "string", "app_name", "Lightmeter"
dimension "app"
signingConfig signingConfigs.release
}

View file

@ -3,7 +3,7 @@
package="com.vodemn.lightmeter">
<application
android:label="Lightmeter"
android:label="@string/app_name"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<activity