I have 2 flavors, lets say Vanilla and Chocolate. I also have Debug and Release build types, and I need Vanilla Release to have a field true, while the other 3 combinations should be false.
def BOOLEAN = "boolean"
def VARIABLE = "VARIABLE"
def TRUE = "true"
def FALSE = "false"
VANILLA {
debug {
buildConfigField BOOLEAN, VARIABLE, FALSE
}
release {
buildConfigField BOOLEAN, VARIABLE, TRUE
}
}
CHOCOLATE {
buildConfigField BOOLEAN, VARIABLE, FALSE
}
I'm having an error, so I guess the debug and release trick doesnt work. It is possible to do this?
Loop the variants and check their names:
Within the Gradle build system,
buildTypes
andproductFlavors
are unfortunately two separate entities.As far as I am aware, to complete what you want to achieve, you would need to create another build flavour as such:
I know it's an old thread but it's the first that popped up when I searched for this question. Actually, this is working with targetSdkVersion 28
You can try this for multiple products flavors:
Here is a solution without lacks I've described under Simas answer