Reputation: 297
How do I save/link the user google account to their google API V3 in-app purchases in order to restore them after re-installing. Can someone provide an example method I can build upon?
Thanks is advance.
Upvotes: 2
Views: 6047
Reputation: 6142
If you have gone through the document you might not have this question. It is clearly described there that the information is persistent on the Google Play servers even if the user uninstalls the application or if they change devices.
getPurchases
call returns list of product's owned by the user. In response you can handle the state of user purchases.
Upvotes: 1