Reputation: 2946
I've downloaded and unzipped android-studio-ide-135.1538390-windows.zip, I already had a %JAVA_HOME% path and when I open studio.bat I get the application opened...
But not installed. I'm currently browsing a project, so the IDE is working, but as I didn't use any wizard, I don't get this:
The individual tools and other SDK packages are saved outside the Android Studio application directory. If you need to access the tools directly, use a terminal to navigate to the location where they are installed. For example:
\Users\\sdk\
I also tried opening directly the studio.exe and the studio64.exe files. The latter acts just like the .bat, whereas studio.exe prompts a "no JVM installation foud. Please install a 32-bit JDK"
Since I have:
\android-studio\bin>echo %JAVA_HOME%
C:\Program Files\Java\jdk1.7.0_13
>javac -version
javac 1.7.0_13
I supposed that this was just for 32 bit windows, and I am on a x64.
May I just work without installing anything? The first issue I have faced is that I cannot run an emulator.
Upvotes: 2
Views: 2333
Reputation: 148
The SDK is apparently no longer bundled with Android Studio. You need to install it separately and then add the path to Android Studio in Configure->Project Defaults->Project Structure.
Upvotes: 2
Reputation: 604
Just Check if you have this error?
You are also using a version of Java that isn't compatible with Android. You'll need to use Java 6 or 7 instead.
As JDK_HOME
and JAVA_HOME
both are different
You need to install Java 7 as 8 is not supported on Android
JDK_HOME
to JAVA_HOME
.
Here is the blog post which explains how to do thta.Hope it Helps!
Upvotes: 0