usage: am [subcommand] [options]


  start an Activity: am start [-D] <INTENT>

    -D: enable debugging



  send a broadcast Intent: am broadcast <INTENT>



  start an Instrumentation: am instrument [flags] <COMPONENT>

    -r: print raw results (otherwise decode REPORT_KEY_STREAMRESULT)
    -e <NAME> <VALUE>: set argument <NAME> to <VALUE>

    -p <FILE>: write profiling data to <FILE>
    -w: wait for instrumentation to finish before returning



  start profiling: am profile <PROCESS> start <FILE>
  stop profiling: am profile <PROCESS> stop



  <INTENT> specifications include these flags:

    [-a <ACTION>] [-d <DATA_URI>] [-t <MIME_TYPE>]
    [-c <CATEGORY> [-c <CATEGORY>] ...]
    [-e|--es <EXTRA_KEY> <EXTRA_STRING_VALUE> ...]

    [--ez <EXTRA_KEY> <EXTRA_BOOLEAN_VALUE> ...]

    [-e|--ei <EXTRA_KEY> <EXTRA_INT_VALUE> ...]
    [-n <COMPONENT>] [-f <FLAGS>] [<URI>]

80