Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Restore transaction inapp purchase android

How to do restore transaction in in-app billing purchase android. So far I have searched in all links. I didn't find exact infromation. I have used BillingHelper.restoreTransactionInformation(BillingSecurity.generateNonce()) but it returns nothing.
Can anyone help me to come out of this problem.

Any help would be appreciated.

like image 362
user Avatar asked Jun 01 '13 09:06

user


1 Answers

The V3 of the api does not require anymore to restore the purchases. Can directly query for purchased items.

Please read the section Querying for Purchased Item of: http://developer.android.com/google/play/billing/billing_integrate.html
and the getPurchases() method description.

like image 69
poiuytrez Avatar answered Oct 02 '22 21:10

poiuytrez