首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Firebase Java Lang内存不足错误:超出GC开销限制

Firebase Java Lang内存不足错误:超出GC开销限制
EN

Stack Overflow用户
提问于 2016-11-12 01:32:51
回答 1查看 361关注 0票数 2
代码语言:javascript
复制
Error:Uncaught translation error: java.util.concurrent.ExecutionException: java.lang.OutOfMemoryError: GC overhead limit exceeded

我想知道我怎样才能解决这个问题。当我试图构建带签名的apk时,就会发生这种情况。

代码语言:javascript
复制
apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.1"

    defaultConfig {
        applicationId "xxxxxxx"
        manifestPlaceholders = [manifestApplicationId: "${applicationId}",
                                onesignal_app_id: xxxxxxxx",
                                onesignal_google_project_number: "xxxxxx"]
        minSdkVersion 16
        targetSdkVersion 23
        versionCode 2
        versionName "2.0"
        multiDexEnabled true


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

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])

    testCompile 'junit:junit:4.12'
    compile 'com.android.support:multidex:1.0.0'
    compile 'com.android.support:appcompat-v7:23.2.1'
    compile 'com.android.support:support-v4:23.2.1'
    compile 'com.onesignal:OneSignal:3.+@aar'
    compile 'com.google.android.gms:play-services:9.8.0'
    compile 'com.google.android.gms:play-services-analytics:9.8.0'
    compile "com.google.android.gms:play-services-location:9.8.0"
    compile 'com.google.firebase:firebase-core:9.6.1'
    compile 'com.google.firebase:firebase-invites:9.6.1'


}
apply plugin: 'com.google.gms.google-services'
EN

回答 1

Stack Overflow用户

发布于 2016-11-12 01:40:17

build.gradle文件中添加你的android闭包

代码语言:javascript
复制
  dexOptions {
       javaMaxHeapSize "4g"
    }

另请参阅下面的指导性解决方案链接Extremely long build with Gradle

票数 3
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/40553278

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档