问题
Whenever I try to make the build of the app , gradle takes too much of time and there comes a message showing that you should increase the Gradle size to 3072 MB , currently it is 910 MB . so my question is how can I increase the heap memory of gradle ??
回答1:
Just add
android {
....
dexOptions {
// Prevent OutOfMemory with MultiDex during the build phase
javaMaxHeapSize "4g"
}
}
in your build.gradle
file
来源:https://stackoverflow.com/questions/37203884/increasing-the-gradle-heap-size