When it comes to Android modding, root in particular there is nothing better than ADB. ADB stands for android debug bridge and is a part of standard android SDK (starter development kit). As the name suggests it provides a bridge between your android device and your computer. It provides a terminal based interface for interacting with your phone's file system.
Installing ADB:
As ADB is a part of Android SDK you need to install SDK first. Before installing SDK you need to assure that your system need to have the following already installed
- Java Runtime Environment (JRE), can be downloaded here
- Java Development Kit (JDK), can be downloaded here (32 bit users download windows x84 version).
After installing launch Android SDK Manager, download
- Android tools.
- Android Sdk tools.
- Android Platform tools. (select your vesrion of android from the list).
- Google usb driver package (listed under extras, if not listed check Pacakged<Show Obsolete Packages).
Setting Path Variable:
After being done with the installation its time to edit path variable. Follow the given steps to get it done:
- Right click "My Computer", goto "Properties: and then click on" Advanced System Settings" from the left pane to bring up "System Properties" windows (Windows 7). OR
- Get this window by right clicking "My Computer" ans selecting "Properties". (Windows XP).
- In the "System Properties" window click "Environment Variables" button on the "Advanced" tab.
- Find "Path" in the "System Variables" section (lower half of the window), and double click on it to edit it.
- You are NOT are not supposed to delete the existing string or it will mess up your computer. Instead just ADD the following string to it when it ends ;c:\program files\android\android-sdk\tools;c:\ program files\android\android-sdk\platform-tools
- I again repeat to just add the following line and not edit anything in the previously present string and apply. I will advise you to create a Restore Point before doing it to be on a safer side
You are now done with the installation of ADB
Feel Free to post comments or queries.
No comments:
Post a Comment