Using the gradle-play-publisher library, how can I upload both a wear bundle and a mobile bundle as a Multiple-APK release ?
            Asked
            
        
        
            Active
            
        
            Viewed 51 times
        
    1 Answers
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