0

我正在尝试实施应用内计费。我对常数有疑问。什么是具有 BILLING_REQUEST、API_VERSION 和 PACKAGE_NAME 常量的类?

4

2 回答 2

2

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

于 2011-03-24T22:12:19.740 回答
2

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

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";

}

正如@James 所说,它们在SampleApplication中

于 2011-03-25T20:16:06.300 回答