无法在 Android Studio 2.1.1 的 gradle.properties 文件中设置 JVM 参数 gradle

- 在Mac OS X上运行Android 2.1.1

- 应用程序不在安卓手机上。

gradle.properties 文件的内容

org.gradle.jvmargs=-Xmx2048M

enter image description here

悬停时,IDE 指示它是未使用的属性。它也应该是深蓝色而不是灰色。

输出:

:MyProjectDirName:transformClassesWithInstantRunSlicerForDebug
:MyProjectDirName:transformClassesWithDexForDebug
To run dex in process, the Gradle daemon needs a larger heap.
It currently has approximately 910 MB.
For faster builds, increase the maximum heap size for the Gradle daemon       
to more than 2048 MB.
To do this set org.gradle.jvmargs=-Xmx2048M in the project   
gradle.properties.
For more information see   
https://docs.gradle.org/current/userguide/build_environment.html

编译器的输出清楚地表明它丢弃了 gradle.properties 文件的内容。

contents build.gradle

android {
    dexOptions {
        javaMaxHeapSize "2g"
    }
}

也玩了这些设置,没有成功:

enter image description here


答案 1

尝试在 gradle.properties 文件中添加 'org.gradle.daemon=true'

/Users/<username>/.gradle/ (Mac)

C:\Users\<username>\.gradle (Windows)

答案基于

https://stackoverflow.com/a/33184794/1915831

https://stackoverflow.com/a/19500539/1915831


答案 2

这对我有用:

属性文件 :

 org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8

构建文件 :

android {
      ...

      defaultConfig {
          ...
          multiDexEnabled true
      }


     dexOptions {
         preDexLibraries = false;
     }
}

推荐