我正在尝试在我的应用上运行LVL,但在手机上调试时出现此错误:
错误/ LicenseChecker(29924):无法绑定到服务。
我也尝试过模拟器,我也遇到了同样的错误,所以我决定调查LicenseChecker.java并改变了:
boolean bindResult = mContext.bindService(
new Intent(ILicensingService.class.getName()),
this, // ServiceConnection.
Context.BIND_AUTO_CREATE);
为:
boolean bindResult = mContext.bindService(
new Intent("com.android.vending.licensing.ILicensingService"),
this, // ServiceConnection.
Context.BIND_AUTO_CREATE);
但同样的问题也出现了。
我正在测试SDK 8,知道如何解决这个问题吗?
提前致谢
答案 0 :(得分:3)