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

前端 未结 8 1732
耶瑟儿~
耶瑟儿~ 2020-12-01 12:41

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 cr

相关标签:
8条回答
  • 2020-12-01 12:54

    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.

    0 讨论(0)
  • 2020-12-01 12:54

    I was facing this same issue, and I solved it by the following steps:-

    1. Close android studio.
    2. Go to your project folder.
    3. Delete .gradle folder and gradle.properties file.
    4. Now start android studio project and wait while gradle build. It will not show the error.
    0 讨论(0)
  • 2020-12-01 12:56

    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
    0 讨论(0)
  • 2020-12-01 13:03

    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 !

    0 讨论(0)
  • 2020-12-01 13:04

    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

    0 讨论(0)
  • 2020-12-01 13:13

    I was having the same problem. I downloaded and installed JDK 6u43 and set my JAVA_HOME and JDK_HOME environment variables to C:\Program Files (x86)\Java\jdk1.6.0_43. This let me create a project.

    Doesn't help if you want to use jdk7, though.

    0 讨论(0)
提交回复
热议问题