In my application in-app purchase and restore work well in Iphone. but android has restore problem.how to get purchased list. restore option not working.how query to get purchased product list.
问问题
581 次
1 回答
1
Google Play 有一个 store.restore() 函数。与具有名为“restore”的 transaction.state 的 iOS 不同,Google Play 返回带有“purchase”的 transaction.state 的已恢复项目。因此,您必须检查诸如 transaction.date 之类的其他内容以查看它的年龄,或者检查在线数据库,您可以在其中将收据信息与原始收据信息进行比较。
在我自己的代码中,就在我调用 store.restore() 之前,我将一个标志“isRestoring”设置为 true,如果我的商店是 Google Play 并且我正在恢复并且我在交易状态下获得“购买”,我知道它是恢复。
于 2013-08-18T22:15:38.423 回答