Debug icon.
This commit is contained in:
@@ -68,6 +68,17 @@ android {
|
|||||||
release {
|
release {
|
||||||
minifyEnabled false
|
minifyEnabled false
|
||||||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
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 {
|
compileOptions {
|
||||||
|
|||||||
@@ -5,9 +5,9 @@
|
|||||||
|
|
||||||
<application
|
<application
|
||||||
android:name=".App"
|
android:name=".App"
|
||||||
android:icon="@drawable/icon"
|
android:icon="${appIcon}"
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
android:roundIcon="@drawable/icon"
|
android:roundIcon="${appIconRound}"
|
||||||
android:theme="@style/Theme.Banvor"
|
android:theme="@style/Theme.Banvor"
|
||||||
android:allowBackup="true"
|
android:allowBackup="true"
|
||||||
android:fullBackupOnly="true">
|
android:fullBackupOnly="true">
|
||||||
|
|||||||
Reference in New Issue
Block a user