我为Nokia X,Nokia X +和Nokia XL开发了Android游戏。我想将应用购买添加到我的应用中。我尝试了许多方法,但对我不起作用。请参见下面的代码。我从onCreate方法调用此代码。
//Verify In-App Payment enabler SHA1 fingerprint.
Intent paymentEnabler = new Intent("com.nokia.payment.iapenabler.InAppBillingService.BIND");
paymentEnabler.setPackage("com.nokia.payment.iapenabler");
bindService(paymentEnabler, mServiceConnection, Context.BIND_AUTO_CREATE);
并且mServiceConnection的代码如下:
ServiceConnection mServiceConnection = new ServiceConnection() {
@Override
public void onServiceDisconnected(ComponentName name) {
Toast.makeText(getApplicationContext(), "disconnect", Toast.LENGTH_LONG).show();
mService = null;
}
@Override
public void onServiceConnected(ComponentName name, IBinder service) {
mService = INokiaIAPService.Stub.asInterface(service);
if (isBillingSupported()) {
Bundle productMappings = new Bundle();
productMappings.putString("1023608", "com.testapp.sword");
productMappings.putString("1023609", "com.testapp.mighty_sword");
productMappings.putString("1023610", "com.testapp.axe");
Toast.makeText(getApplicationContext(), "support billing", Toast.LENGTH_LONG).show();
try {
mService.setProductMappings(3, getPackageName(), productMappings);
Toast.makeText(getApplicationContext(), "support billing work", Toast.LENGTH_LONG).show();
} catch (RemoteException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}else {
Toast.makeText(getApplicationContext(), "support not billing", Toast.LENGTH_LONG).show();
}
}
};
此代码对我不起作用。没有吐司。因此,这意味着未连接服务连接。我在清单中授予开票许可。请帮助我为什么我没有得到正确的结果。
最佳答案
您确定要在诺基亚X模拟器或真实设备中运行该代码吗?如果存在付款启用程序,则它应绑定到服务。如果您在模拟器中运行,请确保您的AVD目标是诺基亚X系统映像(您可以看到诺基亚风格的用户界面)。
溴
珍妮