应用内结算 - Android 市场

发布于 2024-10-24 13:20:56 字数 82 浏览 1 评论 0原文

我正在尝试实施应用内计费。我对常数有疑问。具有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

前事休说 2024-10-31 13:20:56

我不知道,但你检查过 示例应用程序?如果应用程序内计费需要这些常量才能正常工作,那么它们应该在那里。

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.

葬シ愛 2024-10-31 13:20:56

这些只是您可以创建自己的类并从那里引用它们的字符串:

public class Constants {

    // These are the names of the fields in the request bundle.
    public static final String BILLING_REQUEST = "BILLING_REQUEST";
    public static final String API_VERSION = "API_VERSION";
    public static final String PACKAGE_NAME = "PACKAGE_NAME";

}

它们位于 SampleApplication 如@James所述

These are just strings you could make your own class and reference them from there:

public class Constants {

    // These are the names of the fields in the request bundle.
    public static final String BILLING_REQUEST = "BILLING_REQUEST";
    public static final String API_VERSION = "API_VERSION";
    public static final String PACKAGE_NAME = "PACKAGE_NAME";

}

They are in the SampleApplication as stated by @James

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文