Mark Murphy (CommonsWare) helped me find the solution to this one.
Apparently in my manifest I had improperly specified that the receiver
and service should run in separate processes:
*snip*
<receiver android:name=".APITestIntentBroadcastReceiver"
android:process=":remote" />
<service android:name=".APITestIntentService"/>
<receiver android:name=".APITestBroadcastReceiver"
android:process=":remote" />
<service android:name=".APITestService" />
*snip*
Removing the android:process attribute from both of those service
entries resolved the issue. I could also have specificed the same
"named process" for the receiver and service and accomplished
something similar.
More information can be found at:
http://developer.android.com/guide/topics/manifest/receiver-element.html#proc
I was unaware of this process control. Neat!
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en