I am working on a package for other android applications to use, and when they import the .jar, they also need to add a reasonable chunk of permissions and such to the android manifest.
Is it possible to have these required permissions, intent filters and such bundled with the package, and just have them all imported into the manifest at build time with a single line in the manifest? in comparison to just providing a chunk of code to copy and paste into the manifest from the package website.
I feel that this would make importing other packages (one example would be google analytics) much easier if the permissions were bundled, and something along the lines of <import package.name.manifest>
was the only required line to throw in.
Any heads up as to whether this is possible would be awesome, Thanks