Created
January 9, 2023 20:48
-
-
Save giovanileitevitor/ffee0177eec8c76e00f23f6ed54b9aa3 to your computer and use it in GitHub Desktop.
Setting a manifestPlaceHolders
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
buildTypes { | |
release { | |
minifyEnabled false | |
shrinkResources false | |
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' | |
testCoverageEnabled false | |
manifestPlaceholders = [ | |
appIcon: "@mipmap/ic_release" | |
] | |
} | |
debug { | |
applicationIdSuffix ".debug" | |
debuggable true | |
minifyEnabled false | |
shrinkResources false | |
testCoverageEnabled true | |
manifestPlaceholders = [ | |
appIcon: "@mipmap/ic_debug" | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment