I try to run LVL in my application, but I get this error while debugging on my phone:
ERROR / LicenseChecker (29924): Failed to bind to the service.
I also tried on the emulator, and I have the same error, so I decided to research on LicenseChecker.java, and I changed:
boolean bindResult = mContext.bindService( new Intent(ILicensingService.class.getName()), this,
in
boolean bindResult = mContext.bindService( new Intent("com.android.vending.licensing.ILicensingService"), this,
but the same problem arises.
I am testing SDK 8, any idea how to solve this problem?
Thank you in advance
source share