I have a problem with using a background service. I am using the service from 2 activities.
The first activity starts the Service with start
Service
start
This is what worked for me
Instead of
public IBinder onBind(Intent intent) { return null; }
I used
public IBinder onBind(Intent intent) { return mMessenger.getBinder(); }