Hi! I would need some help please. I have combinat...
# gradle
z
Hi! I would need some help please. I have combination of flavors like that:
flavorDimensions "brand", "variant"
productFlavors {
mybrand {
dimension "brand"
applicationId "my.brand.normal"
resValue "string", "app_name", "My Brand"
}
enterprise {
dimension "variant"
applicationId "my.brand.enterprise"
resValue "string", "app_name", "My Brand Enterprise"
}
}
When I build
mybrandEnterprise
flavor
app_name
and
applicationId
is ignored from this configuration, it's the same as in
mybrand
. What I'm doing wrong?