Re: [android-developers] bind service in another aplication

2011-04-25 Thread Mark Murphy
Your service needs to have an , and your Intent needs to match that filter. For example: new Intent("com.commonsware.android.advservice.IScript") would match that from a bindService() standpoint. On Sat, Apr 23,

[android-developers] bind service in another aplication

2011-04-25 Thread ivan harmady
Hi, I'm trying to make bound service. Acording to tutorials at developer.android.com it is appropriate for me to implement bound service using messenger // there is written i should use it if i want to allow clients from different applications to access my service for IPC but i don't need to handle