IntentService LocalBroadcastManager not reaching Receiver
问题 I'm using Android Studio 1.3, I have an IntentService setup that gathers some data and sends it out via a LocalBroadcastManager as so: IntentService public class cService extends IntentService { public cService(){ super("cService"); } @Override protected void onHandleIntent(Intent intent) { SoapPrimitive response = (SoapPrimitive)envelope.getResponse(); Intent broadcastIntent = new Intent("action.getTestData"); broadcastIntent.putExtra("data", response.toString()); LocalBroadcastManager