On Thu, Jun 30, 2011 at 8:47 AM, Suraj Gopalakrishnan <[email protected]> wrote: > Yes onServiceConnected() is called from App-B.
That means that you are bound. > So this concludes that two applications cannot bind to the same remote > service, doesn't it? onServiceConnected() means your service is bound. It does mean that onBind() is not getting called a second time, which I find mildly curious. It is possible that the service is caching based upon Intents -- if you use an equivalent Intent for binding each time, it reuses a cached Binder. Or, perhaps there is something wrong with your logging. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to *Advanced* Android Development_ Version 1.9.9 Available! -- 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

