我試過許可示例。它說「應用程序錯誤= 3」。 我在developer.android.com找到了一張授權響應碼,但是3號如何對應上面的列表?那代碼是什麼意思?Android授權示例返回代碼3.這是什麼意思?
16
A
回答
34
退房源代碼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,檢查答案here,看看如何對付它。
相關問題
- 1. 0x0F是什麼意思?這個代碼是什麼意思?
- 2. WsKSendTo返回STATUS_INVALID_DEVICE_STATE:這是什麼意思?
- 3. UsbConnection.bulkTransfer返回「-1」。這是什麼意思?
- 4. 這段代碼是什麼意思...?
- 5. 這個CSS代碼是什麼意思?
- 6. 這段Ruby代碼是什麼意思?
- 7. 這段代碼是什麼意思?
- 8. 這段代碼是什麼意思?
- 9. 這個javascript代碼是什麼意思?
- 10. 這段代碼是什麼意思?
- 11. 這個.htaccess代碼是什麼意思?
- 12. 這段代碼是什麼意思?
- 13. 這段代碼是什麼意思?
- 14. 這個JS代碼是什麼意思?
- 15. 這個java代碼是什麼意思
- 16. 這個C++代碼是什麼意思
- 17. 這行代碼是什麼意思?
- 18. 這段代碼是什麼意思?
- 19. 這個MIP代碼是什麼意思?
- 20. 這個PHP代碼是什麼意思?
- 21. 這個代碼中'$'是什麼意思?
- 22. 這段代碼是什麼意思?
- 23. 這個C代碼是什麼意思?
- 24. 這個XML代碼是什麼意思?
- 25. 這段代碼是什麼意思?
- 26. 這個HTML代碼是什麼意思?
- 27. 這段Perl代碼是什麼意思?
- 28. 這段代碼是什麼意思?
- 29. 這段代碼是什麼意思? $ .getJSON
- 30. 這段代碼是什麼意思?
這個環節的possibel重複 http://stackoverflow.com/questions/5526889/android-license-check-going-straight-to-applicationerror – 2012-08-08 10:09:32
沒有answaer我的問題:什麼每次效應初探代碼裝置樣品。 – nms 2012-08-08 10:21:57