4

我正在尝试在我的应用程序上运行 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 进行测试,知道如何解决这个问题吗?

提前致谢

4

0 回答 0