gdx-pay icon indicating copy to clipboard operation
gdx-pay copied to clipboard

A libGDX cross-platform API for InApp purchasing.

Results 13 gdx-pay issues
Sort by recently updated
recently updated
newest added

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...

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...

bug
server

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...

enhancement
subscriptions

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,...

android
googlebilling

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...

bug
help wanted
ios-robovm
apple
subscriptions

**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...

enhancement
core

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....

question
server

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...