Forrest logo
back to context overview

am

List of commands for am:

  • am:tldr:3cbb7 am: Convert an intent to a URI.
    $ am to-uri -a ${android-intent-action-VIEW} -d ${tel:123}
    try on your machine
    explain this command
  • am:tldr:bdff6 am: Start an activity and pass [d]ata to it.
    $ am start -a ${android-intent-action-VIEW} -d ${tel:123}
    try on your machine
    explain this command
  • am:tldr:d5b7b am: Start an activity matching a specific action and [c]ategory.
    $ am start -a ${android-intent-action-MAIN} -c ${android-intent-category-HOME}
    try on your machine
    explain this command
  • am:tldr:eac24 am: Start a specific activity.
    $ am start -n ${com-android-settings--Settings}
    try on your machine
    explain this command
back to context overview