Issue with latest 3.0 build (Beta 2) My project has 1 sub module by a 3rd party so I only have access to their build.gradle.
My project has 3 flavours, snap, uat, pr
This error is also due to if the following is NOT true:
android {
flavorDimensions "dimen"
productFlavors {
someProduct {
dimension "dimen"
}
}
}
dependencies {
api project(path: ':module-B')
}
So someProduct has to exist in B
android {
flavorDimensions "dimen"
productFlavors {
someProduct {
dimension "dimen"
}
}
}
GL