I downloaded android-studio-bundle-130.677228-windows
and installed it on my computer. But when I tried to launch the android studio, nothing happening there...Its not launching, no errors. I also tried to run it as administrator, but not working. What is the actual problem there? Is anyone experiencing the same problem?
Asked
Active
Viewed 9,653 times
13

COD3BOY
- 11,964
- 1
- 38
- 56

Alex Chengalan
- 8,211
- 4
- 42
- 56
-
http://stackoverflow.com/questions/16578471/cant-create-new-project-in-android-studio-on-mac-os?rq=1 check this – JNI_OnLoad May 16 '13 at 07:53
-
http://stackoverflow.com/questions/16574189/android-studio-install-on-windows-7-fails-no-jdk-found – Raghunandan May 16 '13 at 07:58
-
For Windows 7 all Android Studio versions since 2022 don't work with symptoms like Java SDK, JAVA_HOME, etc Don't waste the time - downgrade the version to Android Studio 4.0. – Denis Feb 05 '22 at 20:57
3 Answers
24
you have to set up the environment variables in windows 7 , for instance:
JDK_HOME -> c:\Program Files\Java\jdk1.7.0_21\
you may go How to set up JDK_HOME Environment Variable In case, you do not know how to set this variable.
Hope this will Help.

Bhavesh Patadiya
- 25,740
- 15
- 81
- 107
-
It worked, but the main problem now is telling that I don't have te lastest SDK installed, so? – Alejandro L. May 16 '13 at 10:54
-
2@rokimoki: For this you should go to this link http://stackoverflow.com/questions/14869929/update-android-sdk-tool-to-22-0-0latest-version-from-21-1-0/14871487#14871487 – Bhavesh Patadiya May 16 '13 at 11:48
-
@BhaveshPatadiya I updated JDK_HOME. But no change. Still same problem. I am using JDK 6, Should i install latest version ? – Siva Kumar Reddy G Jun 07 '13 at 05:35
8
Ok, simple as this:
- Find you JDK folder path (usually in this format: C:\Program Files\Java\jdk1.7.0) and copy it.
- On windows, click on start --> type "Path" and open Environment Variables window.
- In System variables section --> click New
- Variable name: JDK_HOME
- Variable value: JDK Folder path from part 1.
Enjoy!

David
- 37,109
- 32
- 120
- 141
2
I suggest you follow google plus more often for latest Android happenings. There are already plenty of discussion in their community . Make sure you set JDK_HOME or JAVA_HOME appropriately, or look into this.

Neoh
- 15,906
- 14
- 66
- 78
-
2If this is not working for you, also add "ANDROID_STUDIO_JDK" to the same location as java home. – Stephane Mathis May 16 '13 at 07:54