我尝试了许可样本。它说“应用程序错误= 3”。我在developer.android.com找到了许可响应代码表,但数字 3 与上述列表有何对应关系?那个代码是什么意思?
问问题
9744 次
1 回答
37
查看源代码com.android.vending.licensing.LicenseValidator:
/**
* Contains data related to a licensing request and methods to verify
* and process the response.
*/
class LicenseValidator {
private static final String TAG = "LicenseValidator";
// Server response codes.
private static final int LICENSED = 0x0;
private static final int NOT_LICENSED = 0x1;
private static final int LICENSED_OLD_KEY = 0x2;
private static final int ERROR_NOT_MARKET_MANAGED = 0x3;
private static final int ERROR_SERVER_FAILURE = 0x4;
private static final int ERROR_OVER_QUOTA = 0x5;
private static final int ERROR_CONTACTING_SERVER = 0x101;
private static final int ERROR_INVALID_PACKAGE_NAME = 0x102;
private static final int ERROR_NON_MATCHING_UID = 0x103;
... ...
“应用程序错误 = 3”表示 ERROR_NOT_MARKET_MANAGED,请在此处查看答案以了解如何处理它。
于 2012-08-08T21:51:12.007 回答