我在一个有inAppPurchasing的应用程序中工作。我已经实现了它,但昨天它停止了,现在我无法在应用程序页面中打开。我没有开发人员帐户。这是问题所在,还是设备问题,我已经纠结了两天了,请帮帮我。
boolean bindResult = bindService(new Intent("com.android.vending.billing.MarketBillingService.BIND"), this, Context.BIND_AUTO_CREATE);
if(bindResult){
Log.i(TAG,"Market Billing Service Successfully Bound");
} else {
Log.e(TAG,"Market Billing Service could not be bound.");
//TODO stop user continuing
}在控制台中打印"Market Billing Service console“。
发布于 2011-07-08 14:46:48
这可能是由于Android Market的旧版本造成的。应用内计费需要Market版本2.3.4或更高版本,请检查您的设备的Market版本,并根据需要进行更新。
https://stackoverflow.com/questions/6620177
复制相似问题