R31.0.3-windows | Platform-tools
Search for "Edit the system environment variables" in Windows. Click .
| Command | Purpose | | :--- | :--- | | adb devices | Lists connected devices. Daemon starts here. | | adb install app.apk | Installs a 3rd party app (sideloading). | | adb uninstall com.example.app | Removes an app via its package name. | | adb shell | Opens a Linux terminal on the phone. | | adb pull /sdcard/DCIM/ . | Copies photos from phone to PC. | | adb push file.txt /sdcard/ | Copies a file from PC to phone. | | adb reboot bootloader | Restarts the device into Fastboot mode. | platform-tools r31.0.3-windows
To sideload an application framework package bypass-routing the Google Play Store: adb install package_name.apk Use code with caution. Search for "Edit the system environment variables" in
Understanding Android Platform-Tools r31.0.3 for Windows: A Deep Dive Daemon starts here
:
fastboot flashing unlock # For newer devices (Pixel 6+) fastboot oem unlock # For older devices fastboot flash boot boot.img fastboot flash recovery recovery.img fastboot flash system system.img fastboot reboot
Also, unplug and reconnect USB. Disable "USB selective suspend" in Windows Power Options.
