Android 应用内结算 - 重新安装应用程序后重新购买
我的应用程序使用 Android 市场应用内计费支持,对于用户的首次购买非常有效。然而,当用户删除并再次安装该应用程序时,当他/她购买相同的商品时,市场会不断显示以下声明:“您的订单正在处理,您的商品将在几分钟内上市”。响应代码为“RESULT_SERVICE_UNAVAILABLE”。我能做什么来处理这个问题?
My application uses the Android Market In-App Billing Support and it works well for the first purchase done by user. However, when an user removes and installs the app again, when he/she purchases the same item, the Market keeps showing the following statement: "Your order is processing, your item will be available in a few minutes". And the Response Code is "RESULT_SERVICE_UNAVAILABLE". What can I do to handle this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
研究完 Android 开发者 - 应用内计费 http://developer.android.com /guide/market/billing/billing_overview.html,有一个名为RESTORE_TRANSACTIONS的操作,在应用程序首次启动时调用它可以解决问题。
After studying the Android Developer - In-app Billing http://developer.android.com/guide/market/billing/billing_overview.html, there is an operation called RESTORE_TRANSACTIONS, call it at the first launch of application solves the problem.