gdx-pay
gdx-pay copied to clipboard
A libGDX cross-platform API for InApp purchasing.
Hi ! I can see that the current embedded version of google play billing is the version 3, according to graddle: compile 'com.android.billingclient:billing:3.0.1' Do you plan to migrate to newest...
#### Issue details, reproduction steps/code Currently there is no callback for 'pending' purchase, only 'completed'. At least Google and Apple SDKs have states like that. Was there a particular reason...
Fix bug #206
I used gdx-pay-server to verify the purchase from client. It's always invalid. After test, I detect the reason is Base64Util decode my public key is wrong. After change it to...
List offers = new ArrayList(); offers.add(new Offer().setType(OfferType.CONSUMABLE).setIdentifier(BuyCoinType.coins1.produceId)); offers.add(new Offer().setType(OfferType.CONSUMABLE).setIdentifier(BuyCoinType.coins2.produceId)); offers.add(new Offer().setType(OfferType.CONSUMABLE).setIdentifier(BuyCoinType.coins3.produceId)); offers.add(new Offer().setType(OfferType.SUBSCRIPTION).setIdentifier(BuyCoinType.weekly.produceId)); offers.add(new Offer().setType(OfferType.SUBSCRIPTION).setIdentifier(BuyCoinType.monthly.produceId)); offers.add(new Offer().setType(OfferType.SUBSCRIPTION).setIdentifier(BuyCoinType.yearly.produceId)); // throw new IllegalStateException("Cannot support OfferType Subscription and other types in the same...
There is such a problem, if you press the buy button and immediately close the application, then the purchase will not be delivered, and when you return to the application,...
Please ensure you have given all the following requested information in your report. #### Issue details, reproduction steps/code The iOS Robovm implementation is not handling subscription expiry. If you have...
**In short** I believe it makes sense to add a new method to PurchaseManager, which has to be called by the application to mark the transaction as handled (instead of...
Reading the Apple pay [docs](https://developer.apple.com/library/content/releasenotes/General/ValidateAppStoreReceipt/Chapters/ValidateRemotely.html#//apple_ref/doc/uid/TP40010573-CH104), the Json sent to Apple to validate a receipt is as follows. Key | Value ------------ | ------------- receipt-data | The base64 encoded receipt data....
Update to Google Billing 5 ** Removed SKU Concept ** Purchases now can return multiple products. Only handling one (This can be enabled at Play Store - In App Product...