I have an Android library project that I would like to use from within another Android project.
The library has a Activity declared in its AndroidManifest. When I t
I believe you must include the
Update: It's official solution. From the doc:
Declaring library components in the manifest file
In the manifest file of the application project, you must add declarations of all components that the application will use that are imported from a library project. For example, you must declare any
,,,, and so on, as well as,, and similar elements.Declarations should reference the library components by their fully-qualified package names, where appropriate.