2016-11-11 11 views
2
Error:Uncaught translation error: java.util.concurrent.ExecutionException: java.lang.OutOfMemoryError: GC overhead limit exceeded 

どうすればその問題を解決できるかご了承ください。 署名されたapkをビルドしようとしたときに起こります。Firebase Java Langメモリ不足エラー:GCオーバーヘッドの上限を超えました

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:[email protected]' 
    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' 

答えて

3

あなたbuild.gradleファイルに

dexOptions { 
     javaMaxHeapSize "4g" 
    } 

をあなたのアンドロイドクロージャを追加します。また、それは今働いているmentinedソリューションリンクExtremely long build with Gradle

+0

の下に参照してください。どうもありがとう。 –

関連する問題