Forked from giovanileitevitor/setPlaceHolders.gradle
Created
February 5, 2024 01:26
-
-
Save virendersran01/efe03fb3f0e2ec8eb3d97a81ed321fdb 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