当我将app/build.gradle
中的任何库添加到dependecies
块时,我收到以下错误:
:app:preDexDebug
UNEXPECTED TOP-LEVEL ERROR:
java.lang.OutOfMemoryError: GC overhead limit exceeded
没有或有空
dependencies {
}
我的项目构建并运行。
我的gradle.properties
看起来像是:
org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError
答案 0 :(得分:0)
将以下内容添加到android
关闭位置:
dexOptions {
incremental true
javaMaxHeapSize "4g"
}