logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

ADB Shell - Control Android Devices via Command Line | Online Free DevTools by Hexmos

Control Android devices and emulators easily with ADB Shell. Execute shell commands, manage permissions, and start activities. Free online tool, no registration required.

adb-shell

Run shell commands on a connected Android device or emulator. More information: https://developer.android.com/tools/adb.

  • Start a remote interactive shell on the emulator or device:

adb shell

  • Get all the properties from emulator or device:

adb shell getprop

  • Revert all runtime permissions to their default:

adb shell pm reset-permissions

  • Revoke a dangerous permission for an application:

adb shell pm revoke {{package}} {{permission}}

  • Trigger a key event:

adb shell input keyevent {{keycode}}

  • Clear the data of an application on an emulator or device:

adb shell pm clear {{package}}

  • Start an activity on emulator or device:

adb shell am start -n {{package}}/{{activity}}

  • Start the home activity on an emulator or device:

adb shell am start -W -c android.intent.category.HOME -a android.intent.action.MAIN

See Also