0

What are the checkpoints in creating an IntentService into Library Project in order to use it in other Android Application Project?

My library project has different package.

For example:

Library Project: com.locationplatform.position

Application Project: mobile.app

Any guidance is appreciated.

eros
  • 4,946
  • 18
  • 53
  • 78
  • And what is the problem? Have you tried it? I swear it works. Just register it in the manifest. – Michael Aug 26 '11 at 07:53

1 Answers1

-1

It's possible to invoke a service in the library project from the application project. The only trouble is that the Manifest files doesn't merge. You will have to add the permissions for the activities, services in the library project manually in the application project manifest. Also don't forget to give the absolute package path for the services in the library project. Check this question too. Library Project does the manifest file merge?

Edit. Setting up Library projects in Android.

Community
  • 1
  • 1
Primal Pappachan
  • 25,857
  • 22
  • 67
  • 84
  • cool~ I will accept your answer. Just a follow up, is there any template to start? or links to follow like tutorial? – eros Aug 26 '11 at 08:38