Just remove the binding, the code should look like this:
bindService(new Intent(this, LocalService.class), mConnection, Context.BIND_AUTO_CREATE);
The first parameter of the Intent Context constructor. The code above will work if you call it from your Activity class (any instance of Activity is also a context). If not, you can always use the application context
source share