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 {