in-app-billing
Android In App Billing: Can’t start launchPurchaseFlow because launchPurchaseFlow is in progress
I believe you just have to get the updated code the the in-app billing classes and you shouldn’t run into the same problem again. Google hasn’t pushed out the changes to the SDK Manager yet as far as I know. Just copy/paste the new classes into yours and you shouldn’t run into the problem any … Read more
“in-app billing version 3 NOT supported” with up to date Play Store
I get In-app billing version 3 NOT supported error when the user is not signed into google play. Ensure a user is logged into google play on the device. Update 2023: Note that you might also get the error “Google Play In-app Billing API version is less than 3” when the user is not logged … Read more
Is it possible to debug locally Google Play’s in-app billing in Android Studio?
EDIT: This is now superseded by the newly accepted answer. In essence, in-app billing payments can only be tested with a release-signed apk (the one we upload to Google Play Console). Here are some steps that got me attached to a signed apk with Android Studio: I’m on Windows. It helps having adb.exe in the … Read more
In-App Billing v3 – Don’t detect refund
p.s. – this suggests it just takes time for the refund to be updated http://code.google.com/p/marketbilling/issues/detail?id=88#makechanges But I’m not convinced – I realise they’re caching purchase data on the device but 24h is a long time… Updated to add that more than 24 hours after I cancelled ‘test’ transactions, those accounts are still licensed!! Updated again … Read more
Error in Adding the In-app Billing Library
right click on the head of the project and create a new PACKAGE … call the package com.android.vending.billing ….drop the aidl file in there to quiet the error. Some food for thought: for those with an interest – when using someone’s aidl file, the package name for both apps must be the same. google used … Read more
Server-side verification of Google Play In-app billing version 3 purchase
where do I get the signature from ? Have a look at official docs, It says that inside your onActivityResult() method you can get following data as shown in example, @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { if (requestCode == 1001) { int responseCode = data.getIntExtra(“RESPONSE_CODE”, 0); String purchaseData = data.getStringExtra(“INAPP_PURCHASE_DATA”); String … Read more
How to remove test IAP purchase from Android Google Play
This is an old question but if someone is still looking for a solution then go to: Google Play console and open the Order Management tab There you can refund / cancel test purchases. Then clear the purchase state using this command: adb shell pm clear com.android.vending
Android In-App Billing failure, saying “You already have a pending order for this item.”
While there are issues with in-app billing like the links presented here (i was active commenter on issue 39), there are some worthwhile things to check on as well that can cause a 500 response from google. Namely, “restore transactions” and abusing that call. Abuse of that call is done on a per user basis … Read more
How to remove Subscription from product list in developer console and what will be its effect on the old subscribed users?
Unfortunately, It’s not possible to remove a subscription product from the product list of the developer console. You can just remove the subscription product from the product list offered in your app to prevent users from seeing or purchasing it.