Android-Studio : Error: Could not create the Java Virtual Machine

49,840

Solution 1

In my case, I changed below file to modify vm heap option.

C:\Program Files\Android\android-studio\bin\studio.exe.vmoptions

I increased -Xms128m to -Xms512m and restarted Android Studio.

After that, I could go to next step.

Solution 2

I found a solution to this problem on an old vs-android issue.

You should create a new environment variable named _JAVA_OPTIONS, set it to
-Xms256m -Xmx1024m and it should work.

Solution 3

I guess you have the same problem as me. I use Windows 7 32bit and therefore my Java SDK and runtime are also 32 bit. Gradle runs in its own Java VM and Android Studio starts this VM with a heap size parameter (-Xmx1024m) of 1 GB. This is too much for my 32-bit environment and creating the JVM fails.

If I manually start Gradle with -Xmx512m as JVM option Gradle starts without problems, but so far I have not found out how to tell Android Studio to start the JVM differently while it creates a new Android project.

So currently I'm also still stuck.

thomas

Solution 4

1.In the Studio, navigate to File-> Settings->Compiler

   In the VM Options text box, paste this line
   -Xmx512m -XX:MaxPermSize=512m
  1. Delete the existing AVD.

  2. Then File->Invalidate Caches/Restart .

  3. After restarting the studio, create a new AVD. Should work fine !

Solution 5

I found the solution in vs-android Issue 15: -dex: could not create the Java virtual machine

Follow this steps:

  1. Run regedit
  2. Go to HKEY_CURRENT_USER
  3. Select Environment
  4. Add a new String Value and enter _JAVA_OPTIONS for Value name
  5. Enter -Xms256m -Xmx512m for Value data
  6. Reboot computer
Share:
49,840
Nirav Shah
Author by

Nirav Shah

Updated on February 08, 2020

Comments

  • Nirav Shah
    Nirav Shah about 4 years

    I have just installed Android - studio today. First I have to install jdk7 for this IDE.

    After that only I was able to launch IDE.

    Now When I am trying to create new project, just getting error as shown in below image.

    enter image description here

    Can anybody please help me.

    What is missing from my side?

  • Nirav Shah
    Nirav Shah almost 11 years
    Thanks Thomas, I will also try to find a solution on the same way, if it is the only issue.
  • Ivan Ferrer Villa
    Ivan Ferrer Villa almost 11 years
    thank you! Linked to your answer here: stackoverflow.com/a/16782564/382515
  • Iammesol
    Iammesol almost 10 years
    Thanks! This worked for me setting both options to -Xms512m and -Xmx512m
  • German Latorre
    German Latorre almost 10 years
    Nice point about the 32 bit thing. I've configured C:\Program Files\Android\android-studio\bin\studio.exe.vmoptions with the values you suggested, killed a few apps, and it worked, :-)
  • Sandeep Londhe
    Sandeep Londhe almost 9 years
    what is this file invalidate stands for?, i am having the same problem for android studio on 32 bit machine?
  • akash89
    akash89 almost 9 years
    Studio sometimes can not take up the recent modified files, and at times try to fetch the configurations from the cache, so when you do invalidate think it like, it is clearing all the cache and fetching the current configurations you mentioned. Could you please try the above steps, worked for me and few others.See if this works for you