Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
197 views
in Technique[技术] by (71.8m points)

adb.exe not found after installing Android Studio

I installed Android Studio 1.2.1.1 and also created virtual device. I am trying to install one app (APK file) through command line but I could not find adb.exe file on my machine. Please help where should I look for adb.exe file on the machine.

question from:https://stackoverflow.com/questions/30812493/adb-exe-not-found-after-installing-android-studio

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The adb.exe file will be located at your Android SDK folder, inside platform-tools

...android-sdk-pathplatform-toolsadb.exe

The default location where Android SDK is installed is:

C:Users<insert username here>AppDataLocalAndroidsdk

So adb will be located at:

C:Users<insert username here>AppDataLocalAndroidsdkplatform-toolsadb.exe

To access it on a command line, open cmd.exe and type:

cd C:Users<insert username here>AppDataLocalAndroidsdkplatform-tools

and then your normal command

adb <insert parameters here>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...