应用内结算 - Android 市场
我正在尝试实施应用内计费。我对常数有疑问。具有 BILLING_REQUEST、API_VERSION 和 PACKAGE_NAME 常量的类是什么?
I'm trying implement a In-app billing. I'm with a doubt about constants. What is class have the BILLING_REQUEST, API_VERSION and PACKAGE_NAME constants?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不知道,但你检查过 示例应用程序?如果应用程序内计费需要这些常量才能正常工作,那么它们应该在那里。
I don't know off-hand, but have you checked out the sample application? If those constants are needed for in-app billing to work, they should be in there.
这些只是您可以创建自己的类并从那里引用它们的字符串:
它们位于 SampleApplication 如@James所述
These are just strings you could make your own class and reference them from there:
They are in the SampleApplication as stated by @James