In my android{} section I tried to put two different build types for may free and paid app.
Sadly I\'m getting gradle error:
Gradle \'android
The correct syntax for the buildConfigField
lines is:
buildConfigField "boolean", "MY_FLAG", "true"
In other words, the strings need to be separated by commas.
In my case:
buildConfigField ("transport.product_flavors.MonetizationType", "MONETIAZATION_TYPE", "transport.product_flavors.MonetizationType.FREE")