I tried to write an Android application with activity that should be launched from another application. This is not a content provider, but simply a gui application that should not be listed among installed applications. I tried the code examples here , and it seems pretty simple to run existing providers, etc., but I can't figure out how to simply write a “hidden” application and run it from another.
The main use case:
- Appendix A is a regular apk launched from the list of applications.
- Appendix B is another apk with well-known names of packages and actions, but it does not appear or is launched from the list of applications.
- Appendix A launches Appendix B using the names of the packages and classes (or, perhaps, the URI built from them?).
I fail in the third step. Can this be done?
source share