I have developed a Service
in my Android app, that seems to be running fine under the same process as my app. By this I mean that onBind()
is called etc and I can communicate with effectively.
The problem is that when I define the process
attribute in the Service
tag in the manifest the function onBind()
is never called.
Why is this? How can I bind to the service when it is running as a separate process?
Please don't ask my to post code as what I have is generic service stuff, the questions is merely on the theory of how Services work on Android. Thanks.