Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android studio does not run [closed]

Android studio does not run in Windows 8. I download it, install, but when i press on icon to run it - nothing happens. I try to run with admin. I try to set compatibility with Windows 7.

like image 305
Kostya Khuta Avatar asked May 16 '13 06:05

Kostya Khuta


People also ask

Why is my Android Studio not opening?

If Studio doesn't start after an upgrade, the problem may be due to an invalid Android Studio configuration imported from a previous version of Android Studio or an incompatible plugin.

How do I close Android Studio?

How To Close, Save Android Studio Project. To close the project you need to click the ” File —> Close Project ” menu in the top menu bar. To save the Android project, you need to click the ” File —> Save All ” menu in the top menu bar.

Why Android Studio is not working in my laptop?

Open Start menu > Computer > System Properties > Advanced System Properties In the Advanced tab > Environment Variables. Add new system variable JAVA_HOME that points to JDK folder, C:\Program Files\Java\jdk1. 7.0_13\

How do I start Android Studio after installing Windows 10?

Choose a start menu folder for the "Android Studio" shortcut and click the "Install" button to proceed. After the successful completion of the installation, click on the "Next" button. Click on the "Finish" button to proceed. Now, your Android studio welcome screen will appear on the screen.


1 Answers

For debugging it is very helpful to start C:\Program Files (x86)\Android\android-studio\bin\studio.bat.

That points out what is wrong. In my case I had to update my JDK_HOME environment variable to point to the currient installation.

From the android documentation (this part was published after I wrote my answer):

Known issue: On some Windows systems, the launcher script does not find where Java is installed. If you encounter this problem, you need to set an environment variable indicating the correct location.

Select Start menu > Computer > System Properties > Advanced System Properties. Then open Advanced tab > Environment Variables and add a new system variable JAVA_HOME that points to your JDK folder, for example C:\Program Files\Java\jdk1.7.0_21.

like image 127
rekire Avatar answered Oct 19 '22 13:10

rekire