On Jun 23, 11:06 am, deg <[email protected]> wrote: > Also, what are the rules for AndroidManifest elements? > - Does the main package or an Android library (or both) need to > declare a uses-permission for something that happens in library code? > - If a library implements a BroadcastReceiver should it be declared in > its manifest, or that of the application (or both)? > - etc.
The library's manifest ONLY needs a <manifest> element with a package="com.mylibrary.packagename" attribute. This isn't in the docs AFAIK, but was stated in a post on this group by the Android platform dev responsible for libraries. I can attest that I've done mine this way and it works fine. String -- 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

