我已经按照以下内容在http://developer.android.com/guide/market/billing/billing_integrate.html
找到的Android应用结算示例代码我已将该代码集成到我的应用程序中 - 并遵循适当的所有步骤,包括签署apk - 上传,在应用程序产品列表中创建等。
出于某种原因当我的应用程序在onCreate方法中使用这些行时:
Log.e("sc2","About to check if billing is supported");
// Check if billing is supported.
ResponseHandler.register(mDungeonsPurchaseObserver);
if (!mBillingService.checkBillingSupported()) {
Log.e("sc2","failed check for billing supported");
showDialog(DIALOG_CANNOT_CONNECT_ID);
}
if (!mBillingService.checkBillingSupported(Consts.ITEM_TYPE_SUBSCRIPTION)) {
Log.e("sc2","failed check for billing supported subscriptions");
showDialog(DIALOG_SUBSCRIPTIONS_NOT_SUPPORTED_ID);
}
Log.e("sc2","Finished checking if billing is supported");
两个对话框都没有显示 - 建议所有内容都正确绑定到市场结算服务。
但是在PurchaseObserver回调这些行:
private class SC2PurchaseObserver extends PurchaseObserver {
public SC2PurchaseObserver(Handler handler) {
super(UpgradesActivity.this, handler);
}
@Override
public void onBillingSupported(boolean supported, String type) {
if (Consts.DEBUG) {
Log.e("sc2", "supported: " + supported+":"+type);
}
if (type == null || type.equals(Consts.ITEM_TYPE_INAPP)) {
if (supported) {
restoreDatabase();
mBuyButton.setEnabled(true);
mEditPayloadButton.setEnabled(true);
} else {
showDialog(DIALOG_BILLING_NOT_SUPPORTED_ID);
}
} else if (type.equals(Consts.ITEM_TYPE_SUBSCRIPTION)) {
mCatalogAdapter.setSubscriptionsSupported(supported);
} else {
showDialog(DIALOG_SUBSCRIPTIONS_NOT_SUPPORTED_ID);
}
}
日志消息如下所示:
支持:false:null 支持:false:subs
建议Android市场回调既没有在应用计费标准中说,也没有启用订阅....
有人可以解释一下为什么第一次检查可能没有失败 - 但是回拨信息会像他们一样出现!?
非常感谢
答案 0 :(得分:13)
答案 1 :(得分:0)
创建Request捆绑包时是否更改了BILLING_REQUEST_API_VERSION?以下方法来自示例项目
protected Bundle makeRequestBundle(String method) {
Bundle request = new Bundle();
request.putString(Consts.BILLING_REQUEST_METHOD, method);
request.putInt(Consts.BILLING_REQUEST_API_VERSION, 2);
request.putString(Consts.BILLING_REQUEST_PACKAGE_NAME, getPackageName());
return request;
}