Target software: SetCPU_2.24.zip
ref: http://forum.xda-developers.com/showthread.php?t=505419
How to Install
- Download and install Java SDK (Ex: jdk-6u21-windows-i586.exe)
- Download Android SDK package (Ex: installer_r16-windows.exe)
- Extract SDK package into anywhere on your drive (Ex: C:\Program Files\Android\android-sdk)
Phone Setup
In order to use ADB, you have to enable USB Debugging option in phone settings (Settings->Applications->Development)
- Connect the phone to your pc/notebook usb port
- Run Windows command line tool (cmd) and go to C:\Program Files\Android\android-sdk\tool
New Android SDK puts adb executable file on \platform-tools directory instead of tool. So the path should be C:\Program Files\Android\android-sdk\platform-tools
Usefull Commands
1. Check connected phone
Syntax: adb devices
2. Login to Android shell
Syntax: adb shell
Note:
If you get ‘#’ after typing adb shell, you are already get root access on the phone, no need to type su. Otherwise if you get ‘$’ , type ’su’ to get root access (only for rooted device).
4. Install application
You can use adb to install aplication from your local drive into phone.
Syntax: adb install appname.apk
Example:
D:\android-sdk-windows\tools\adb install D:\AnReboot.apk
5. Copy files from phone to local drive
Syntax: adb pull source [destination]
Example:
D:\android-sdk-windows\tools\adb pull /sdcard/arm11-dvm.zip
D:\android-sdk-windows\tools\adb pull /sdcard/arm11-dvm.zip D:\
6. Copy files from local drive to phone
Syntax: adb push source destination
Example:
D:\android-sdk-windows\tools\adb push D:\AnReboot.apk /sdcard
No comments:
Post a Comment