Why is android studio not opening? - android-studio

I try to open android studio but it says
Failed to open JVM DLL if you have JDK installed set JAVA_HOME variable....
I set the JAVA_HOME variable, downloaded new jdk
set it to that and redownloaded android studio but nothing is working.

It says to install Microsoft Visual C++ Redistributable
Installing it provides a "missing vcruntime140_1.dll file in bundled Java Runtime" to the Android Studio.
read - https://issuetracker.google.com/issues/247854802?pli=1

buddy hopes you are doing great this crash happens when an awful java path is changed or deleted.
This same error I already faced when the new update I downloaded to Android Studio Electric Eel | 2022.1.1
To solve this you need to change the path from the environment or you should delete the old java and download the new JDK and give the path.
You should follow this answer: https://stackoverflow.com/a/27113946/19674027 for better understanding
Happy Coding...

Related

failed to load jvm dll android studio Electric Eel

I was trying to install Android Studio Electric Eel on a laptop but after installation when I'm trying to open this error comes,
failed to load jvm dll android studio
I already,
Added JAVA_HOME in system variables,
Added path of Java bin folder,
try this, it's worked for me
just delete the jre folder and it starts working(restart android studio)...
C:\Program Files\Android\Android Studio\jre
The problem is because of traces of old Android Studio java folder,The new Android Studio Electric Eel is using jbr, not jre.
You also need to add your bin directory path in path System Variable
Edit System Variables and add your path as follow

Android studio is not opening AFTER changing studio64x.exe.vmoptions or deleting it

I have changed studio64x.vmoptions file to make studio faster but ever since I made change, android studio is not opening. it shows error about JAVA_HOME environment variable but I already have added that. please help!
tried reinstalling android studio, adding Java_Home , deleting studio64x.exe.vmoptions. still not opening
I was able to resolve the same issue (Android Studio was not opening) by refer to the solution provided in Android Developer Portal,
Studio doesn't start after upgrade
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. As a workaround, try deleting (or renaming, for backup purposes) the directory below, depending on the Android Studio version and operating system, and start Android Studio again. This will reset Android Studio to its default state, with all third-party plugins removed.
For Android Studio 4.1 and later:
Windows: %APPDATA%\Google\AndroidStudio Example: C:\Users\your_user_name\AppData\Roaming\Google\AndroidStudio4.1
macOS: ~/Library/Application Support/Google/AndroidStudio Example: ~/Library/Application Support/Google/AndroidStudio4.1
Linux: ~/.config/Google/AndroidStudio and ~/.local/share/Google/AndroidStudio Example: ~/.config/Google/AndroidStudio4.1 and ~/.local/share/Google/AndroidStudio4.1

Is JDK 8 really important for Android Studio?

I recently installed Android Studio 2.3.3 on my Mac, but I forgot to install JDK 8 before setting up Android Studio. I am already halfway through the development process of my App, so know I don't want to uninstall Android Studio, then install JDK 8 and again reinstall Android Studio, so should I uninstall Android Studio for JDK 8, is it really that important?
First thing, JDK is important in Android Studio to compile your .java files. As you said you are half way through your development process ,there is a JVM in your machine(not necessarily JDK-8).
Android by default installs a JVM in your computer.
Open a project in Android studio,
Goto File -> Project Structure -> SDK location
There you can see, default JDK location, if there is no such thing then,
1.install JDK-8, and Set the Environmental variables.
2.Set the jdk path in the JDK location in the android studio.

Run Android Studio with Java 8

Since a plugin for IntelliJ (Upsource) requires Java 8 I'd like to run my Android Studio with Java 8 on a Mac.
I could setup JAVA_HOME and start Android Studio from terminal but this is very inconvenient. I'd like to start Android Studio from the OSX UI.
I did not find a way how to specify the JAVA_HOME with Android Studio settings. Moreover this link (https://intellij-support.jetbrains.com/hc/en-us/articles/206544879-Selecting-the-JDK-version-the-IDE-will-run-under) says nothing about Android Studio.
Does anyone know where to configure the Runtime-JDK/JRE for Android Studio 2.1 on OSX without setting any JAVA_HOME?
From http://tools.android.com/tech-docs/configuration
export STUDIO_JDK=/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk
You can also have a look here: http://tools.android.com/tech-docs/configuration/osx-jdk it explains how to set the jre for running android-studio and the jdk for your android project.
In short, you can in a terminal:
export STUDIO_JDK=/Library/Java/JavaVirtualMachines/jdk1.8.0_25.jdk
open /Applications/Android\ Studio.app
And it will launch android_studio with the jdk8
EDIT: from comment #Soccertrash
You can persist the STUDIO_JDK variable via launchctl:
launchctl setenv STUDIO_JDK /Library/Java/JavaVirtualMachines/jdk<version>

JdK1.8.0_45 path issue Android Studio

I am getting this issue repeatedly "Installing Android Studio, does not point to a valid JVM installation error" while launching Android Studio.
I have installed Eclipse and Android studio Both on My System. Eclipse is working fine but Android Studio is not Working now. Means Before Installation of Eclipse it was working well.
I have Set the Path="C:\Program Files(x86)\Java\jdk1.8.0_45\bin".
And I have also installed jdk1.7.0 and jdk1.6.0_07 on my system.
![enter image description here][1]
Android Studio Works With JDK 7 ans JDK 8 both:
Need to set jdk path like this;
JAVA_HOME = "C:\Program Files(x86)\Java\jdk1.8.0_45"

Resources