[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 { productFlavors {
dev { dev {
applicationId "com.vodemn.lightmeter.dev" applicationId "com.vodemn.lightmeter.dev"
resValue "string", "app_name", "Lightmeter (DEV)"
dimension "app" dimension "app"
signingConfig signingConfigs.release signingConfig signingConfigs.release
} }
prod { prod {
applicationId "com.vodemn.lightmeter" applicationId "com.vodemn.lightmeter"
resValue "string", "app_name", "Lightmeter"
dimension "app" dimension "app"
signingConfig signingConfigs.release signingConfig signingConfigs.release
} }

View file

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