I recently was updating an app that I work on to handle notifications from push using a JobIntentService instead of a regular IntentService because
JobIntentService
IntentService
This is what worked for me,
Remove the IBind Override as suggested by @agirardello
IBind
and added the following
@Override public int onStartCommand(@Nullable Intent intent, int flags, int startId) { return super.onStartCommand(intent, flags, startId); }
Have no idea why this worked.