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?
