Android Studio Gradle OutofMemory Error

后端 未结 3 1489
天涯浪人
天涯浪人 2021-01-21 13:23

Ive been trying to import my android project into a new computer with Android Studio 0.5.2 after each gradle build i get:

Out of memory: Java heap space. Configu         


        
相关标签:
3条回答
  • 2021-01-21 13:45

    You can also got to: Help > Edit Custom VM Options...

    custom Android Studio VM options, see http://tools.android.com/tech-docs/configuration

    -server
    -Xms512m
    -Xmx2048m
    -XX:ReservedCodeCacheSize=720m
    -XX:+UseConcMarkSweepGC
    -XX:SoftRefLRUPolicyMSPerMB=100
    -ea
    -Dsun.io.useCanonCaches=false
    -Djava.net.preferIPv4Stack=true
    -XX:+HeapDumpOnOutOfMemoryError
    -XX:-OmitStackTraceInFastThrow
    -XX:MaxJavaStackTraceDepth=-1
    
    0 讨论(0)
  • 2021-01-21 13:53

    Note that in today's Android Studio version you can do it directly in the GUI, no need for command-line parameters:

    This can also be set by editing a settings file: For Windows, the file located at c:\Users\USERNAME\.AndroidStudioXXX\config - in this folder, look for a file with extension of .vmoptions. In that file, you can set the following lines, for example:

    -Xms256m
    -Xmx4096m
    -XX:ReservedCodeCacheSize=240m
    

    Note that these changes should be done when Android Studio is closed. After changing the values and saving the file, reopen Android Studio and it should work faster than before.

    0 讨论(0)
  • 2021-01-21 14:06

    Try the following:

    Ctrl + Alt + S -> Compiler -> Gradle

    InVM Options field write:

    -Xmx2048m -XX:MaxPermSize=512m

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