我正在尝试实施应用内结算。我对常数有疑问。什么类有BILLING_REQUEST,API_VERSION和PACKAGE_NAME常量?
答案 0 :(得分:2)
我不知道副手,但你检查了sample application吗?如果应用内结算需要这些常量,那么它们应该在那里。
答案 1 :(得分: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";
}
他们在SampleApplication中,正如@James
所述