> It seems like the Service may not be declared correctly in the
> AndroidManifest.xml. Your declaration should be something like the one
> below:
>
>  <service android:name=".AYmsgService" android:process=":remote">
>             <intent-filter>
>                 <!-- These are the interfaces supported by the service,
> which
>                      you can bind to. -->
>                 <action android:name="com.service.test.IAYmsgService" />
>                 <action android:name="com.service.test.REMOTE_SERVICE" />
>             </intent-filter>
>         </service>

Is the intent-filter for services going to be required for future Android
releases?

I ask, because I've created and bound to services just fine with a far
simpler entry in the manifest:

<service android:name=".MailBuzzService" />

so a service-specific intent filter doesn't seem to be required with the
M5 edition of the SDK.

Thanks!

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com
The Busy Coder's Guide to Android Development -- coming in June 2008!


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to