i just had to deal with the same problem, my code was pretty close to
the sample code google provided.
one thing was missing though, the hind to declare intent-filters for
the Interfaces inside the service tag in the AndroidManifest.xml.
once i added
----
<service android:name="MyService" android:process=":remote">
<intent-filter>
<action
android:name="com.android.demo.notepad2.IRemoteService" />
</intent-
</service>
----
everything worked fine for me, notice that i left out the secondary
interface which wasn't of any use for me.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---