- Windows OS
- Download ADBKit - GitHub
- USB Driver for your Device or Universal ADB Driver
- Install the USB Driver for your Phone or Universal Adb Driver
- On your Phone, go to
Settings
>About Phone
. Find theBuild Number
and tap on it7
times to enable Developer Options - Now enter
System
>Developer Options
and findUSB debugging
and enable it - Plug your Phone into the Computer and change it from
Charge only
toFile Transfer
Mode - On your Computer, browse to the Directory where you extracted the ADBKit Zip
- Launch a Command Prompt with
Open CMD.bat
- Once you’re in the Command Prompt, enter the following Command:
adb devices
- System is starting the ADB Daemon (If this is your first Time running ADB, you will see a Prompt on your Phone asking you to authorize a Connection with the Computer. Click OK.)
- Succesful enabled USB Debugging
- Enable adb shell, type:
adb shell
and hit Enter
- Uninstall App (Example Package "YouTube"):
pm uninstall --user 0 com.google.android.youtube
and hit Enter
- Enable adb shell, type:
adb shell
and hit Enter
- Re-install App (Example Package "YouTube"):
cmd package install-existing com.google.android.youtube
and hit Enter