I have an application that includes a wear app. All works fine on debug tested with a real device. I can alse create the release apk that packs the wear apk inside it. But o
The flavor of the parent app isn't propagated automatically to the Wear project. You have to map it explicitly.
Instead of this:
dependencies {
wearApp project(':myWearApp')
}
Do this:
In your Wear app:
android {
publishNonDefault true
}
In your parent app:
dependencies {
TrialWearApp project(path: ':myWearApp', configuration: 'Trial')
FullWearApp project(path: ':myWearApp', configuration: 'Full')
}