0

Using the gradle-play-publisher library, how can I upload both a wear bundle and a mobile bundle as a Multiple-APK release ?

Damia Fuentes
  • 5,308
  • 6
  • 33
  • 65

1 Answers1

0

Wear app gradle

play {
    ...
    commit = false
}

Mobile app Gradle

play {
    ...
    commit = true
}

Then call:

./gradlew :wear:publishReleaseBundle :mobile:publishReleaseBundle
Damia Fuentes
  • 5,308
  • 6
  • 33
  • 65