Wednesday, December 22, 2010

How To Set Up ADB/USB Drivers for Android Devices!! (4/4)

blogged by GmyDotCom

Some Common ADB/Fastboot Commands


ADB Commands
adb devices – lists which devices are currently attached to your computer
adb install <packagename.apk> – lets you install an Android application on your phone
 
adb remount – Remounts your system in write mode – this lets you alter system files on your phone using ADB
 
adb push <localfile> <location on your phone> – lets you upload files to your phones filesystem
 
adb pull <location on your phone> <localfile> – lets you download files off your phones filesystem
 
adb logcat – starts dumping debugging information from your handset to the 
console – useful for debugging your apps
 
adb shell <command> – drops you into a basic linux command shell on your phone with no parameters, or lets you run commands directly

adb devices – lists which devices are currently attached to your computer

adb install <packagename.apk> – lets you install an Android application on your phone

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

adb push <localfile> <location on your phone> – lets you upload files to your phones filesystem

adb pull <location on your phone> <localfile> – lets you download files off your phones filesystem

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

adb shell <command> – drops you into a basic linux command shell on your phone with no parameters, or lets you run commands directly.

No comments:

Post a Comment