0
我有一個應用程序,可以從谷歌播放使用In-app purchase
下載。在我的應用程序中使用應用程序購買需要信息?
我使用的示例產品ID
android.test.purchased
從谷歌播放購買的產品。我可以購買產品並獲得烤麪包信息Thank you. Your item will appear shortly
,但我無法看到我購買的logcat消息和物品。這是我正在使用的代碼public Handler mTransactionHandler = new Handler() { public void handleMessage(android.os.Message msg) { Log.i(TAG, "Transaction complete"); Log.i(TAG, "Transaction status: " + BillingHelper.latestPurchase.purchaseState); Log.i(TAG, "Item purchased is: " + BillingHelper.latestPurchase.productId); if (BillingHelper.latestPurchase.isPurchased()) { Log.i(TAG, " is purchased completed "); showItem(); } };
};
如果我使用自己的產品編號購買,是否需要提供原始信用卡詳細資料? 要購買產品,我使用測試帳戶作爲設備中的主要帳戶。
沒關係,爲什麼我無法看到所購買的產品。 –
對於該代碼,我可以看到我的logcat購買的產品不知道你! :( – Villan
我可以更新完整的代碼,但我用這個 –