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
This works:
In your library, put your custom Activity
:
public class MyLibraryActivity extends ListActivity { ... }
No need to put it into a manifest. In your calling Android project, create an empty (dummy) wrapper:
public class MyActivity extends MyLibraryActivity { }
and add reference to this class to your manifest: