我正在測試Google Play應用內購買的靜態回覆。GooglePlay帳單靜態回覆。驗證是必需的。您需要登錄您的Google帳戶
至於文件(https://developer.android.com/google/play/billing/billing_testing.html)說,靜態響應測試應該沒有上傳APK。但認證錯誤仍在發生。
驗證是必需的。您需要登錄自己的谷歌帳戶
我和我的開發人員帳戶測試,並且選擇加入beta測試用戶列表也。
這是我的購買流程代碼。有沒有人有類似的問題?
Bundle buyIntentBundle = mService.getBuyIntent(3, mActivity.getPackageName(), _item, "inapp", "test");
PendingIntent pendingIntent = buyIntentBundle.getParcelable("BUY_INTENT");
if (pendingIntent != null)
{
mHelper.launchPurchaseFlow(mActivity, mActivity.getPackageName(), REQUEST_CODE, mPurchaseFinishedListener, "test");
}
else
{
// Cannot purchase
Toast.makeText(mActivity, "purchase failed", Toast.LENGTH_SHORT).show();
}