我有一个可以使用In-app purchase
.
我正在使用示例产品 ID
android.test.purchased
从 google play 购买产品。我可以购买产品并收到 toast 消息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(); } };
};
如果我使用自己的产品 ID 购买,是否需要提供原始信用卡详细信息?要购买产品,我使用测试帐户作为设备中的主帐户。