If I had to wager a guess, the line that is causing you problems is:
licenseChecker.checkAccess(licenseCheckerCallback);
or the line above it which creates the licenseChecker. This looks like it could be trying to talk to a Service. Starting with Lollipop, all bound services must be bound using an explicit Intent. The error you are seeing is because something is calling bindService() and providing an Intent object in which no ComponentName has been set.