Android 5.0 (L) Service Intent must be explicit in Google analytics
If you’re trying to use Google’s Licensing mechanism, solution that worked for me: // explicit Intent, safe Intent serviceIntent = new Intent(ILicensingService.class.getName()); serviceIntent.setPackage(“com.android.vending”); boolean bindResult = mContext.bindService(serviceIntent, this, Context.BIND_AUTO_CREATE); This is located in com/google/android/vending/licensing/LicenseChecker.java. Do a search for “Base64.decode(“ Edit: Adding reference to Google Licensing java file that has to be patched: com.google.android.vending.licensing.LicenseChecker.checkAccess(LicenseChecker.java:150) patch: new … Read more