gpt4 book ai didi

android - 我该如何解决错误 : java. lang.OutOfMemoryError : GC overhead limit exceeded?

转载 作者:搜寻专家 更新时间:2023-11-01 07:49:44 24 4
gpt4 key购买 nike

我更新了我的 Android Studio 并尝试运行一个应用程序,但它显示了这样的错误。

Error:Execution failed for task ':app:transformClassesWithDexForDebug'.> com.android.build.api.transform.TransformException: com.android.ide.common.process.ProcessException: java.util.concurrent.ExecutionException: java.lang.OutOfMemoryError: GC overhead limit exceeded

Android Studio 更新之前,相同的应用程序运行良好,所以我试图解决这个问题,我发现只有一个我已经在 gradle 文件中完成了..

dexOptions {
incremental true
javaMaxHeapSize "4g"
}

那么现在我该怎么做才能解决这个问题,请帮助我。谢谢。

最佳答案

将此添加到您的 gradle.properties 文件中。

# The Gradle daemon aims to improve the startup and execution time of Gradle.
# When set to true the Gradle daemon is to run the build.
org.gradle.daemon=true

# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
# Default value: -Xmx10248m -XX:MaxPermSize=256m
org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8

# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
org.gradle.parallel=true

# Enables new incubating mode that makes Gradle selective when configuring projects.
# Only relevant projects are configured which results in faster builds for large multi-projects.
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:configuration_on_demand
org.gradle.configureondemand=true

在我的 build.gradle 上:

....
dexOptions
{
incremental false
javaMaxHeapSize "2048M"
preDexLibraries = false
}//end dexOptions

....

找到 Here

还有我的答案Here

关于android - 我该如何解决错误 : java. lang.OutOfMemoryError : GC overhead limit exceeded?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36645795/

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