michael sunil wrote: > Hi , > > I am getting following message when i try to launch > service.Also is there any specific path on file system where we need > to place the .apk file which contains my serivce component only.
1. You need to install the APK file that contains your service component 2. Your service component's manifest entry needs to have an intent filter, probably with a custom action 3. Your service client, in its own APK, needs to build an Intent that will match with the service's intent filter At this point, AIDL should be usable between the client and service, via a call to bindService() on the client side and an appropriate implementation of onBind() on the service side. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android Training in Germany, 18-22 January 2010: http://bignerdranch.com --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

