Debug icon.

This commit is contained in:
2021-10-09 13:47:48 +01:00
parent 4ae3528c29
commit a7fec27c0f
2 changed files with 13 additions and 2 deletions

View File

@@ -68,6 +68,17 @@ android {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
manifestPlaceholders = [
appIcon: "@drawable/icon",
appIconRound: "@drawable/icon"
]
}
debug {
applicationIdSuffix ".debug"
manifestPlaceholders = [
appIcon: "@drawable/icon_debug",
appIconRound: "@drawable/icon_debug"
]
}
}
compileOptions {

View File

@@ -5,9 +5,9 @@
<application
android:name=".App"
android:icon="@drawable/icon"
android:icon="${appIcon}"
android:label="@string/app_name"
android:roundIcon="@drawable/icon"
android:roundIcon="${appIconRound}"
android:theme="@style/Theme.Banvor"
android:allowBackup="true"
android:fullBackupOnly="true">