Created
February 1, 2017 09:51
-
-
Save kyryloz/5cd0d6fa41261a0e045733259972c9e3 to your computer and use it in GitHub Desktop.
filter unusable flavors or build types for gradle
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
variantFilter { variant -> | |
def names = variant.flavors*.name | |
if (names.contains("devBeta") && variant.buildType.name == "release") { | |
variant.ignore = true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment