zokipirlo
12/17/2019, 7:57 AMflavorDimensions "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?