Android 应用内结算问题
我正在使用本教程:
http://mcondev.wordpress.com/2011/06/26/integrate-in-app-billing-just-3-lines-of-code-in-your-app/ 。
当我到达最后一步时:
checkout.sendCheckoutRequest(purchaseUri.toString(),null);
它崩溃了。 purchaseUri
的用途是什么?
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此purchaseUri是“market.android.com/publish->创建新的应用内产品”选项中您的资源的“应用内产品ID”。该字符串应设置为“应用内产品”id。这就是为什么“id”是最重要的。 “应用内产品 ID”是您引用该特定产品的方式。
另外,在 Security.java 中,不要忘记从市场帐户的“编辑个人资料”页面添加您的“公钥”。
This purchaseUri is the “In-app Product ID” of your resource on the “market.android.com/publish->Create New In-App Product” options. This string should be set as the “in app product” id. That’s why the “id” is most important. The “In-App Product ID” is how you refer to that particular product.
Also, in Security.java dont forget to add your “public key” from your market place account “edit profile” page.