Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to develop a library project which consists of a GCMIntentService and it performs GCM registration process and receives messages sent over GCM.

I have used AIDL to expose my library project service to host application,but I need to declare the service in application project also..... How can I avoid this?
Also I needed to declare all the permissions required for GCM in application manifest too.
Is there any way in which all permissions and services from library project can be referenced from host application without having to declare them again in the manifest?

I have searched over this and found:
1. Is it possible encapsulate permission inside Android framework (library)
Which clearly says that what I'm trying to achieve is not possible.
2. Something useful Library Project does the manifest file merge? The answer by @Hayes Haugen says that "AndroidManifest.xml merging is supported in version 20 of the ADT tools"
I'm using ADT version 20.0.3

Is there anyway I can achieve having library project providing GCM integration?

share|improve this question
Enable with the manifestmerger.enabled property – Leonidos Jan 31 at 8:43
@Leonidos I have 'manifestmerger.enabled=true ' in my project.properties file... Yet i get an exception when i use permissions specified in library project manifest. – Zeba Jan 31 at 11:26

1 Answer

I hope this helps, I had a similar problem as you and could not find a solution which did not cause some or other problem. My solution was when someone uses my application builder it drops my library into the application as well as my copy of the GCMintent class and CGM lib file.

The system then automatically adds the permissions to the manifest of his app and out pops a new apk for him to use. This is just how we do it, I hope this might tend you in the direction of a solution.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.