Questions tagged [gradle-play-publisher]

Gradle Play Publisher 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.

Gradle Play Publisher 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.

13 questions
7
votes
1 answer

Task 'publishApkRelease' not found in root project

Im trying to configure gradle-play-publisher in my project, I have configured play block in build.gradle(Module: app), here's my build.gradle(Module:app): apply plugin: 'com.android.application' android { compileSdkVersion 22 …
Aqib Mumtaz
  • 4,936
  • 1
  • 36
  • 33
5
votes
2 answers

'com.github.triplet.play' Some problems were found with the configuration of task ':app:generateAppNameReleasePlayResources'

After i have updated android studio to 3.4.2 and gradle, when i run this line gradlew publishApkappNameRelease im getting this error : * What went wrong: Some problems were found with the configuration of task…
3
votes
0 answers

Upload release notes using gradle play publisher

I have an android app that is automatically published to the play-store using gradle play publisher. In the GPP documentation, they have mentioned that release notes can be bundled with the app as follows. The contents of the file "default.txt"…
2
votes
1 answer

Gradle Android Buildscript Configuration with Flavors

I'm working on an Android application that has two different flavours and I'm looking at the Gradle Play Publisher to automate the release to the alpha channels by using the Gradle wrapper command line. Each of the two flavours corresponds to a…
1
vote
0 answers

A failure occurred while executing com.github.triplet.gradle.play.tasks.CommitEdit$Committer

trying to publish bundle but i got this error every time > Task :app:publishRelease Task :commitEditForComDotDigcoderDotTecsiDotHse FAILED Committing changes FAILURE: Build failed with an exception. What went wrong: Execution failed for task…
1
vote
0 answers

Gradle Play Publisher's minimum Gradle version is at least Gradle 7.0.2 and yours is Gradle 6.5

I tried to configure my gradle file to use gradle plugin followig this tutorial: https://github.com/Triple-T/gradle-play-publisher#authenticating-gradle-play-publisher but now i'm getting this error in the title These is my gradle…
1
vote
1 answer

Use Gradle Play Publisher's version name override in Java

Gradle Play publisher lets you override the version name before publishing to the play store. play { // ... resolutionStrategy = "auto" outputProcessor { // this: ApkVariantOutput versionNameOverride =…
Vivek Maskara
  • 1,073
  • 11
  • 29
1
vote
1 answer

gradle-play-publisher: Task 'bootstrap' or 'publishApk' not working

I am trying to integrate the gradle plugin https://github.com/Triple-T/gradle-play-publisher in version 2.0.0-beta1 to automatically upload a new version of an APK to the PlayStore. I followed the instructions and created a service account and…
Thomas Cirksena
  • 717
  • 2
  • 8
  • 28
1
vote
1 answer

Invalid contact phone number specified for this app

I am getting this message while publishing apk using gradle-play-publisher { "code" : 403, "errors" : [ { "domain" : "androidpublisher", "message" : "Invalid contact phone number specified for this app.", "reason" :…
Aqib Mumtaz
  • 4,936
  • 1
  • 36
  • 33
0
votes
1 answer

How to publish wear bundle and mobile bundle together as a multi-APK release using gradle-play-publisher?

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

Gradle: publishApkProductionRelease to internal test

I can not publishing a version for the track "internal" on Gradle Play Publisher, my plugin is updated and I am using the latest version of gradle (4.9). What am I doing wrong? play { track = 'internal' }
0
votes
1 answer

gradle-play-publisher publishing first version

Im trying to push apk using gradle-play-publisher but getting following error: Execution failed for task ':app:publishApkRelease'. > No application was found for the package name com.xxx.xxx. Is this the first release for this app? The first version…
Aqib Mumtaz
  • 4,936
  • 1
  • 36
  • 33
-1
votes
1 answer

Different between publishApkNameRelease and publishNameRelease CI/CD

iam trying to publish new version of the app using this plugin: 'com.github.triplet.play' and when i ran gradlew app:publishApkRelease i got this error message What went wrong: Task 'publishApkRelease' not found in project ':app'. Some candidates…