Android Studio Does Not Start
Solution 1:
It's a bug of Android Studio 0.1v
http://tools.android.com/knownissues#as0.1
- Open Start menu > computer > System Properties > Advanced System Properties
- In the Advanced tab > Environment Variables, add new system variable
JAVA_HOME
that points to your JDK folder, for exampleC:\Program Files\Java\jdk1.7.0_21
Solution 2:
have you seen this thread? has details on windows 7 64bit issues and how to solve.
Android Studio installation on Windows 7 fails, no JDK found
Solution 3:
I was facing similar problem on Windows 7 x64 professional edition. Please note following steps to fix this problem.
tools.jar is missing from required path if you are using jdk1.7 x64 bit version.
Please install x86 version of jdk1.7
Set JDK_HOME="C:\Program Files (x86)\Java\jdk1.7.0_67" and update path environment variable as path="C:\Program Files (x86)\Java\jdk1.7.0_67\bin"
Launch 32 bit application from /android-studio\bin folder.
I tested and verified these steps on windows 7 with 32 bit jdk1.7
Solution 4:
- Open Start menu > computer > System Properties > Advanced System Properties
- In the Advanced tab > Environment Variables, add new system variable STUDIO_SDK that points to your JDK folder, for example C:\Program Files\Java\jdk1.7.0_21
Solution 5:
Here is a tutorial on Youtube that shows you how to install it. It seems you must have an environmental variable called JDK_HOME and set it to your JDK directory. The link to the video is http://youtu.be/TTrUX1kUpDo
Hope that helps :)
Post a Comment for "Android Studio Does Not Start"