[android-developers] Re: Start an activity without declaring it in manifest file

2008-09-02 Thread Mark Murphy
semaka wrote: I have a project in which I have to start an activity which is not declared in AndroidManifest.xml. Is that possible to register an activity dynamically by code? Not that I'm aware of. Or is it possible to overwrite the AndroidManifest.xml from an installed .apk or to

[android-developers] Re: Start an activity without declaring it in manifest file

2008-09-02 Thread Justin (Google Employee)
As mark has said, nope, its not possible. The manifest registers your application with the system. This is the only way the system becomes aware of executable targets. Cheers, Justin Android Team @ Google On Sep 2, 7:21 am, Mark Murphy [EMAIL PROTECTED] wrote: semaka wrote: I have a project