Jakob-

It may be possible to do this with the SDK, but I am not enough of an
SDK expert to know for sure.

However, you might find it easier to simply develop/debug your Service
in the same process.  Once it's running and is fairly stable, you can
try making it remote.

The calling conventions are essentially the same for local & remote
processes;  The primary difference is that you have more restrictions
with a remote process, since everything has to go through a binder (no
direct object references or method calls, and all data has to be
parcelable).  But you can make calls to your local service using the
binder-based interface and it will still work properly.

Hope this helps.

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to