I just banged my head against the wall for half a day on this problem.

I moved the LVL code into my project's namespace, but the following
call in LicenseChecker.checkAccess() would fail:

boolean bindResult = mContext.bindService(new
Intent(ILicensingService.class.getName()), this,
Context.BIND_AUTO_CREATE);


May I suggest that this be changed to:

boolean bindResult = mContext.bindService(new
Intent(ILicensingService.Stub.DESCRIPTOR), this,
Context.BIND_AUTO_CREATE);

and, obviously, DESCRIPTOR made package private.

Should I file a bug report?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to