即时运行java.lang.OutOfMemoryError:超出GC开销限制

时间:2016-04-15 09:18:12

标签: android android-studio android-build android-gradle-2.0 android-instant-run

我已升级到Android Studio 2.1,当我尝试构建&运行我的企业大项目:

  

任务执行失败':app:transformClassesWithDexForMyAppDebug'。   com.android.build.api.transform.TransformException:com.android.ide.common.process.ProcessException:   java.util.concurrent.ExecutionException:java.lang.OutOfMemoryError:   超出GC开销限制

我已经在论坛中搜索并禁用了即时运行,也写入了我的build.gradle:

dexOptions {
    incremental true
    javaMaxHeapSize "6g"
}
...
dependencies{
    compile 'com.android.support:multidex:'
}

但它无法解决我的问题。 我在gradle中启用了multidex,因为没有它我得到了错误:

  

com.android.dex.DexIndexOverflowException:方法ID不在[0,0xffff]中:65536

所以这是它的解决方案,之前它与以前版本的Android Studio(也适用于公司中的其他人,使用Android Studio 1.4-2.0)一起工作,但是因为我升级了Android,所以不适用于我工作室。

有谁知道可能导致问题的原因是什么?

有趣的是,如果我只是在制作项目时我没有得到错误,只有当我尝试运行它时。任何想法都表示赞赏!

编辑1:

有趣的是,如果我重启我的android工作室,比第一次运行成功,但第二次运行不成功。

编辑2:

如果我将堆大小设置为更大(例如8-10g),而不是首次运行时甚至无法编译的应用程序。

编辑3:

似乎问题在于即时运行,如果我强制android studio不使用它(比如一次部署到两个设备或更改像答案中的gradle.properties)错误消失。

4 个答案:

答案 0 :(得分:27)

将其添加到您的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

找到Here

build.gradle上:

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

....

答案 1 :(得分:3)

第1步:更改build.grade

'percentage_AMOUNT' o/p = 'p'

第2步:在Application类上设置

p

第3步:更改grade.properties

defaultConfig {
        ...
        // Enabling multidex support.
        multiDexEnabled true
       }

dependencies {
        ...
        compile 'com.android.support:multidex:1.0.0'
    }

它会工作!感谢。

答案 2 :(得分:0)

另一种为特定作业设置堆大小的方法是为每个作业使用环境变量。这样可以确保在不使用需要更高内存的作业时可用的内存。

GRADLE_OPTS="-Dorg.gradle.jvmargs=-Xms1024M -Xmx8192M -XX:PermSize=512M -XX:MaxPermSize=2048 -XX:+CMSClassUnloadingEnabled -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8"

JAVA_OPTS="-XX:MaxPermSize=2048M"

答案 3 :(得分:-2)

defaultConfig {
    multiDexEnabled =true
}

add this to your build.gradle file of the app