Debug app name.

This commit is contained in:
2021-10-09 17:05:43 +01:00
parent e112d78439
commit 0653507928
2 changed files with 4 additions and 2 deletions

View File

@@ -72,6 +72,7 @@ android {
manifestPlaceholders = [
appIcon: "@drawable/icon",
appIconRound: "@drawable/icon",
appName: "@string/app_name"
]
}
debug {
@@ -80,6 +81,7 @@ android {
manifestPlaceholders = [
appIcon: "@drawable/icon_debug",
appIconRound: "@drawable/icon_debug",
appName: "@string/app_name_debug"
]
}
}

View File

@@ -6,7 +6,7 @@
<application
android:name=".App"
android:icon="${appIcon}"
android:label="@string/app_name"
android:label="${appName}"
android:roundIcon="${appIconRound}"
android:theme="@style/Theme.Banvor"
android:allowBackup="true"
@@ -14,7 +14,7 @@
<activity
android:name=".WelcomeActivity"
android:exported="true"
android:label="@string/app_name"
android:label="${appName}"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />