Platform Tools //free\\

| Command | Description | | :--- | :--- | | adb shell | Enters the device's command-line shell (Linux environment). | | adb reboot | Reboots the device. | | adb reboot bootloader | Reboots the device into Fastboot/Bootloader mode. | | adb install filename.apk | Installs an application (APK) onto the device. | | adb push local_file /sdcard/ | Copies a file from PC to device. | | adb pull /sdcard/file.txt | Copies a file from device to PC. | | adb logcat | Displays the system log (useful for debugging crashes). |