When I try to deploy with these productFlavors
, wear debug apk won't built and it is not embedded into mobile release apk. But after I delete productFlavors
from mobile and wear build.gradle
file, it's working as it should.
productFlavors {
lite {
}
pro {
applicationId 'example.app.id.pro'
versionNameSuffix '.pro'
}
}