Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add android tools dir to windows 7 path?

I like to quickly start hierarchyviewer. At the moment i use the prompt to go navigate to .... \AppData\local\android\android-sdk\tools\ and then hierarchyviewer

I think i need to add something to windows 7 path, but i don't know what to do exactly.

Any suggestions?

regards

like image 250
alex Avatar asked Nov 08 '12 09:11

alex


People also ask

Where is the Android SDK path?

Navigate to the File > Settings option you will get to see below dialog screen. Inside that screen. Click on Appearance and Behavior option > System Settings options and then click on the Android SDK option to get to see the below screen. Inside this screen, you will get to see your SDK path.


2 Answers

Suppose you have download and install Android SDK, and extract it in some drive. There are two methods to set PATH:

Use command prompt :

set path=%path%;D:\android-sdk-windows\tools;

Another is follow these steps :

My Computer->Property->Advanced->Environment Variables->Edit Path Variable and add “D:\ android-sdk-windows\tools” into the Path Variables.
like image 102
Anup Cowkur Avatar answered Oct 22 '22 19:10

Anup Cowkur


In your computer properties-advance-environment variables-system variable ,and you find variable "path", add your android/tools path in it.

The operate like add java.exe in you computer path

like image 41
CarlWang Avatar answered Oct 22 '22 19:10

CarlWang