Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is the way one can start an app form the Android adb shell.

am start -n com.package.name/com.package.name.ActivityName

It is also possible to invoke dalvik vm in the adb shell, detailed in the article Basic Dalvik VM Invocation.

Whats the relation between these two commands? Is it possible to launch an app directly using dalvik vm? If not, why not?

share|improve this question
1  
Normally you do not create a process for an app (as in traditional program launching), but instead ask the activity manager to send a message to zygote (what the am command above causes) asking it to fork a child already having shared mappings of common libraries. The child changes to you application's userid and loads your code. – Chris Stratton Jul 25 '12 at 11:35

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.