Reputation: 175
How do I install ADB? What do I need to do in order to get to the shell on an android phone?
I installed the SDK, and now I am using Eclipse. How do I install apps using ADB?
Upvotes: 1
Views: 1470
Reputation: 7128
right click "computer" -> Properties -> Advanced System Settings -> Environment Variables
Then add ;C:\Program Files (x86)\Android\android-sdk\tools;C:\Program Files (x86)\Android\android-sdk\platform-tools
to the end of your System Path variable. Make sure your at the end of the whole path variable so you don't overwrite what is currently there
Then open up command window and type adb install apkLocation\myApp.apk
Upvotes: 1
Reputation: 6317
Go To
->Android->android-sdk->platform-tools>adb.exe from command prompt
It will give you a list of options how to use it adb
To install apk from adb
adb install myapk.apk(path to apk)
For other ADB commands info check this link
Upvotes: 1