GPP is Android's unofficial release automation Gradle Plugin. It can do anything from building, uploading, and then promoting your App Bundle or APK to publishing app listings and other metadata.
the plugin only supports uploading different flavours of the same APK. If the APK is in a different module such as app and wear the plugin does not support this.
app\build\outputs\apk\debug\app-debug.apk
wear\build\outputs\apk\debug\wear-debug.apk
Potential solutions/workarounds
a potential work around is to copy the wear APK to the app directory using a gradle task
Problem description
the plugin only supports uploading different flavours of the same APK. If the APK is in a different module such as app and wear the plugin does not support this.
app\build\outputs\apk\debug\app-debug.apk
wear\build\outputs\apk\debug\wear-debug.apk
Potential solutions/workarounds
a potential work around is to copy the wear APK to the app directory using a gradle task
Additional context