gpt4 book ai didi

安卓工作室 : GC overhead limit exceeded

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:24:55 27 4
gpt4 key购买 nike

Error:Execution failed for task ':app:transformClassesWithDexForDebug'.
> java.lang.OutOfMemoryError: GC overhead limit exceeded

尝试过:

dexOptions {
javaMaxHeapSize "4g"
}

这似乎是唯一可用的在线解决方案。

但它仍然超过了第二次构建的限制,除非我终止工作室任务并重新启动,这使得它第一次工作。

build.gradle 中绝对没有太多依赖

build.grade

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.2"

defaultConfig {
applicationId "com.xxxxx.android"
minSdkVersion 16
targetSdkVersion 23
versionCode 8
versionName "1.3"
}

dexOptions {
javaMaxHeapSize "4g"
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:recyclerview-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'com.jakewharton:butterknife:6.1.0'
compile 'com.squareup.okhttp:okhttp:2.3.0'
compile 'com.squareup.okhttp:okhttp-urlconnection:2.3.0'
compile 'com.squareup.retrofit:retrofit:1.9.0'
compile 'de.greenrobot:eventbus:2.4.0'
compile 'com.google.android.gms:play-services-location:+'
}

最佳答案

这是gradle的java堆不够的问题,不是IDE的问题

我在gradle.properties中增加了Java Heap

org.gradle.jvmargs=-Xms1024m -Xmx4096m

关于安卓工作室 : GC overhead limit exceeded,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35034830/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com