0

I've setup Android Studio in Windows 7 and it's work fine for me. But the same installation I try with Windows 8 seems to not be working. For some reason the installer can't find the Java SDK, even when JAVA_HOME is set to its location.

Has anybody configured Android Studio in Windows 8? Is there any additional special configuration required to work on Windows 8 like this?

Community
  • 1
  • 1
Hitesh Patel
  • 2,868
  • 2
  • 33
  • 62

1 Answers1

3

You need to add environment variable ANDROID_STUDIO_SDK with the path to the jdk in the system (right-click My Computer -> Properties -> Advanced).

roykovsky
  • 48
  • 4
  • I followed all the basic steps which required on Windows 7, and also added ANDROID_STUDIO_SDK and JDK_HOME as well as JAVA_HOME in Environment variables but that doesn't solve my problem. – Hitesh Patel May 18 '13 at 03:38
  • What about version of your system and java? x86 or x64? I had a problem that I had Win8 x64 installed, but Java x86. Reinstalling a proper version solved this problem. – roykovsky May 18 '13 at 03:41
  • JAVA 7 Update 21 and Win8 x64 – Hitesh Patel May 18 '13 at 03:47
  • All I needed to do was set JDK_HOME as per this answer ( http://stackoverflow.com/questions/16582107/android-studio-doesnt-start ), mine is set to: C:\Program Files\Java\jdk1.7.0_21 – leetNightshade May 25 '13 at 23:28