我已经在我的应用程序中实现了应用内购买。
- 我上传了未发布但保存为草稿的 apk。
- 开发者邮箱和测试账号邮箱不一样。
我还阅读了此文档
http://developer.android.com/guide/google/play/billing/billing_overview.html和http://developer.android.com/guide/google/play/billing/billing_integrate.html。
但没有得到任何想法。有没有人有任何其他想法?
我到了我做错的地方。实际上我没有使用我的测试帐户。现在我正在使用测试帐户,但仍然存在同样的问题,所以我有两个问题。
再次保存后,我应该等待 2-3 小时吗?
我上传了版本 2 的 APK,所以这里需要更改吗?
private static Bundle makeRequestBundle(String method) { Bundle request = new Bundle(); request.putString("BILLING_REQUEST", method); request.putInt("API_VERSION", 1); request.putString("PACKAGE_NAME", mContext.getPackageName()); return request; }