Reputation: 31
I am trying to develop a cordova project. I have already installed Android studio with SDK in location
C:\Users\Kushi\AppData\Local\Android\sdk2
In this sdk2 I have installed all packages as well. And also i have all necessary ENVIRONMENT VARIABLES created(as in the image). Still i get this error saying that "Android SDK not found. Make sure that it is installed. If it is not at the default location, set the ANDROID_HOME
environment variable" Please answer ASAP.
Thanks!!
Upvotes: 0
Views: 3183
Reputation: 1502
In CMD, try
set ANDROID_HOME=C:\Users\Kushi\AndroidSDK
set PATH=%PATH%;%ANDROID_HOME%\tools;%ANDROID_HOME%\platform-tools
Assuming you indeed saved your SDK as AndroidSDK at C:\Users\Kushi
Upvotes: 1