Cellphonesguide.net
Login or Register to remove ads! You're browsing our forum and website as a Guest meaning you can only see a portion of the forum in read-only mode.
Android Android Games iOS iPhone Samsung Galaxy Google Pixel OnePlus Huawei Xiaomi
Discord Social FB Group Games Ask a Question Apps

Common ADB Commands

Common ADB Commands
« on: May 03, 2015, 10:30:08 PM »
Lists which devices are currently attached to your computer
adb devices

Drops you into a basic linux command shell on your phone with no parameters, or lets you run commands directly
adb shell

Lets you install an Android application on your phone
adb install

Remounts your system in write mode – this lets you alter system files on your phone using ADB
adb remount

Rets you upload files to your phones filesystem
adb push

Lets you download files off your phones filesystem
adb pull

Starts dumping debugging information from your handset to the console – useful for debugging your apps
adb logcat