Debug app name.
This commit is contained in:
@@ -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"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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" />
|
||||
|
||||
Reference in New Issue
Block a user