Questions tagged [google-play-developer-api]

The Google Play Developer API allows you to perform a number of publishing and app-management tasks in an automated way.

The Google Play Developer API allows you to perform a number of publishing and app-management tasks in an automated way.

Google Play Developer API

432 questions
7
votes
5 answers

Gray Box thumbnail icon Google Play Developer Console

i have a problem in the Google Play Developer Console. After i had uploaded a new update of one of my apps, the thumbnail icon of this app in the "All Applications" page changed to this. I had set a different icon both on android manifest and "Store…
7
votes
0 answers

How to get a list of historical payments for a subscription from Google Developer API?

By using Google Play Developer API and the call https://www.googleapis.com/androidpublisher/v2/applications/{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}…
Sten
  • 1,079
  • 11
  • 25
6
votes
2 answers

Expo EAS Submit, where to store service account key

I am looking into using EAS (expo Application Services) to submit a build to the Google Play Store. As per the docs, a serviceAccountKeyPath is required: https://docs.expo.dev/submit/eas-json/#serviceaccountkeypath I have successfully submitted a…
mahi-man
  • 4,326
  • 2
  • 25
  • 36
6
votes
2 answers

Google Billing Free Trial - same user multiple times

We are implementing Google Billing with server side validation. One of the features that we have to support is "Free Trial". Single user is able to participate in "free trial" only once. If he cancels the subscription, and then tries to buy same…
6
votes
4 answers

How do i get my app publishing status via API

Every time you publish even a tiniest update for your app to google play, you have to wait for a review process to finish before an update will be published. This review process can take up to a week at worst (because poor google is struggling with…
6
votes
1 answer

How to pass the json file in github Action?

I am trying to create the web flow to release the app on play store. Here is the code: - name: Upload to Google Play uses: r0adkll/upload-google-play@v1 with: serviceAccountJson: ${{ SERVICE_ACCOUNT_JSON }} …
6
votes
1 answer

querySkuDetailsAsync callback never called

I think to have followed all the steps correctly from the documentation but I can't reach the callback of querySkuDetailsAsync, no errors reported. The app is working correctly with IAB, now I'm only migrating from old library to the new…
6
votes
1 answer

Google play console action required to update server side billing confirmation API, but API is already using latest version

We received this error in our Google play console recently: ACTION REQUIRED: Your server-side billing confirmations will stop working on December 1, 2019 Your app is using an old version of the Google Play Developer API. From December 1 2019,…
6
votes
0 answers

Is it possible to manage the Google Play Console Email List programmatically via an API?

The Google Play Email List management area in the Google Play Console allows admins to enter comma separated email addresses or upload a CSV. The Google Play Console makes an http POST to…
6
votes
3 answers

Android In-App update API return 0 as availableVersionCode & updateAvailability as 1 (UPDATE_NOT_AVAILABLE)

I'm trying to implement the in-app update API, followed in-app-update-api, when debugging the app with lower version than play store version, AppUpdateInfo return availableVersionCode as 0 and updateAvailability as 1 (UPDATE_NOT_AVAILABLE), Note:…
6
votes
1 answer

In-App Billing: Is ProductID and SubscriptionID the same?

I currently design my implementation strategy for possible status updates (from status purchased to status cancelled and so on) in in-app billing which is a real headache, and there is a confusion: I fetch getPurchases() in the app. This gives me…
Bevor
  • 8,396
  • 15
  • 77
  • 141
6
votes
3 answers

Safe to assume paymentState is absent from Google Play API for test purchases?

It appears when I get the Purchases.subscriptions resource for a purchaseToken using the Google Play Developer API that test purchases do not include the paymentState property. However, real purchases seem to always include it. So is it safe to…
6
votes
1 answer

Cancel and refund ALL google play subscriptions

We have an app in the Google Play Store that we will no longer support in the future. Users were able to buy subscriptions for the app's content. We want to cancel all running subscriptions and refund the users. The Google Play Developer Api…
fweigl
  • 21,278
  • 20
  • 114
  • 205
6
votes
0 answers

Uploading multiple APK app with google play api using fastlane supply

While setting up a continuous deploy pipeline for our mobile projects I ran into an error while uploading an APK (signed and aligned) to the play store through google's API. I'm using fastlane's supply action to do the actual upload (which uses…
Bert
  • 257
  • 1
  • 2
  • 10
5
votes
2 answers

Authenticate a GET request to Google Play Purchase API with service account python

I need to verify purchases of my android App from my AWS lambda in python. I have seen many posts of how to do so and the documentation and here is the code I have written : url =…