Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 13th, 2012  |  syntax: None  |  size: 0.45 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How to run apk from commandline in emulator
  2. adb -e install -r "your-apk-file-complete-path"
  3.        
  4. am [start|instrument]
  5. am start [-a <action>] [-d <data_uri>] [-t <mime_type>]
  6. [-c <category> [-c <category>] ...]
  7. [-e <extra_key> <extra_value> [-e <extra_key> <extra_value> ...]
  8. [-n <component>] [-D] [<uri>]
  9. am instrument [-e <arg_name> <arg_value>] [-p <prof_file>]
  10. [-w] <component>
  11.        
  12. am start -a android.intent.action.MAIN -n
  13. com.abhi.ui/com.abhi.ui.LaunchIt