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
0
votes
0 answers

Insufficent permissions when trying to view ratings,reviews of my app using google play console api

steps I have done- I have linked my project in google console Api by clicking on Link button. Created a service account and generated key along with a json file to have access. Gave permission as owner to my mail account so I can retrieve ratings…
0
votes
1 answer

Using the defaut application credentials to access the Google Play API?

I'm building an appengine app that requires access to the Google Play Developer API. I've seen in the sample code that it's possible to authenticate using a service account in addition to Oauth. Is there any chance this could work with the default…
mbonnin
  • 6,893
  • 3
  • 39
  • 55
0
votes
1 answer

Get Google play store application url programmatically

I want to read url of the page when accessing Google play, whats the best way to do this on Android ? To describe, user searches an app A, clicks on app A page, i want to read that url
0
votes
1 answer

Android app crashes after successful purchase of subscription with Google Play Billing Library

I'm implementing Google Play's Billing Library for users to purchase in-app subscriptions. According to Google's documentation on testing, I can only test my code through a test release, such as an internal test release. I've gotten to this point…
Michael
  • 835
  • 2
  • 10
  • 24
0
votes
1 answer

Uploading split apk files using google api client edits method in python

Does anybody have any insight on whether or not the Google Play Publishing API will allow an upload with split APKs? I know there is a bundle method for app bundles, but my developer hasn't switched to this format yet.
Danual
  • 3
  • 2
0
votes
2 answers

it's possible add a variable to the Proguard Crash Report (Google Play ANR & Blocks)

anybody can explain if it's possible to attach a variable to the proguard crash reports?? I mean something like this: java.lang.NullPointerException: at es.com.myapp.dashboardActivity$askForUserBills.doInBackground (dashboardActivity.java) or…
0
votes
1 answer

Play games sign-in not showing option to select account

I'm trying to sign-in user using play games services but it keeps failing. It doesn't even show the popup to select the account to sign in. I have successfully linked my app with the developer account and also included required dependencies but it…
0
votes
1 answer

Relashionship between Google Apps & Game services

I honestly cannot understand the correlation between Google Apps & Game services. I am trying to test Google play services on my Unity game. I configured everything as in documentations. I created a "Game service" in the Google Play console for the…
nipunasudha
  • 2,427
  • 2
  • 21
  • 46
0
votes
0 answers

Google Play Developer API | Reply to Reviews

POST https://www.googleapis.com/androidpublisher/v2/applications/{your_package_name}/reviews/ {review_id}:reply?access_token={your_access_token} Header : { Content-Type:application/json } Body : { "replyText" :…
0
votes
1 answer

Credentials for Google Play Developer API

I'm trying to access to Google Play Developer API. For now, I've just downloaded the sample projects, but I need a Client ID and a Secret. I've successfully created a service account from Google Play Console / Google API Console, but I don't know…
manfcas
  • 1,933
  • 7
  • 28
  • 47
0
votes
1 answer

Upload OBB expansion file to Google Play draft artifact using API

I am trying to upload an main OBB expansion file to the google play store using the Google play API (https://developers.google.com/android-publisher/). I am currently successfully uploading the correct APK file using the edits.apks.upload…
0
votes
1 answer

Uploading expansion files using google api client edits method python

I'm trying to upload expansion files using the Google Play Publishing API. I've been able to use the edits method to upload apk files with no problem, but attempting a similar solution for obb files has failed. The error I'm getting is: Traceback…
0
votes
0 answers

Can we get the Rating(Review) of the user of the app by app itself?

What I mean is to get the the Rating(Review) in Google Play of the app's user. I am wondering if this is possible and it could be used to remind users to rate in Google Play, if they didn't do it before.
0
votes
0 answers

Is it possible to have an App with G.Drive as storage backend?

I want to make an App that will use one Google Drive as Data Storage. This Documentation requires that the user should login and access their own Drive. But, instead, i want my users to connect to my (developer) drive and access all the files and…