Android Debug Bridge

Posted on Dec 19, 2020

  1. Download the Android SDK Platform-Tools package.
    https://developer.android.com/studio/releases/platform-tools
  2. Activate the developer mode.
    [Settings] – [System] – [About phone] – hit [Build number] 7 times
  3. Connect the phone with a USB cable.
  4. Type adb commands on the command line.
    adb devices
    adb shell am force-stop package
    adb shell am kill package
    adb shell pm clear package
    adb shell pm uninstall –user 0 package
    adb kill-server