I have my main activity that start a service (Location service) and I want that service to broadcast the new location each time a new location is found.
Thanks to th
In your LocationService, send local broadcast using:
LocationService
Intent intent = new Intent(CMBroadcastReceiver.RECEIVE_LOCATION_UPDATE); LocalBroadcastManager.getInstance(this).sendBroadcast(intent);