2015-11-18 43 views
13

我在Android Studio中遇到了一个奇怪的问题,一切似乎工作正常,直到今天后,添加一些新文件并作出一些更新build.gradleAndroid Studio - 发布在build.gradle未捕获的翻译错误ExecutionException OutOfMemory

我看到错误消息如下:

Uncaught translation error: java.util.concurrent.ExecutionException: java.lang.OutOfMemoryError: GC overhead limit exceeded 
Uncaught translation error: java.util.concurrent.ExecutionException: java.lang.OutOfMemoryError: GC overhead limit exceeded 
Uncaught translation error: java.util.concurrent.ExecutionException: java.lang.OutOfMemoryError: GC overhead limit exceeded 
Uncaught translation error: java.util.concurrent.ExecutionException: java.lang.OutOfMemoryError: GC overhead limit exceeded 
Uncaught translation error: java.util.concurrent.ExecutionException: java.lang.OutOfMemoryError: GC overhead limit exceeded 
Uncaught translation error: java.util.concurrent.ExecutionException: java.lang.OutOfMemoryError: GC overhead limit exceeded 
6 errors; aborting 
Error:Execution failed for task ':myapplication:dexDebug'. 
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Program Files\Java\jdk1.8.0_11\bin\java.exe'' finished with non-zero exit value 1 

你知道,如果有低于我的build.gradle任何问题?新行在“新增附件下面添加该行”。我还将multiDexEnabled设置为true。

apply plugin: 'com.android.application' 
android { 
    compileSdkVersion 23 
    buildToolsVersion '23.0.1' 
    useLibrary 'org.apache.http.legacy' 

    defaultConfig { 
     applicationId "com.my.app" 
     minSdkVersion 14 
     targetSdkVersion 21 
     multiDexEnabled true 
     compileOptions { 
      sourceCompatibility JavaVersion.VERSION_1_7 
      targetCompatibility JavaVersion.VERSION_1_7 
     } 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 
     } 
    } 
    //useLibrary 'org.apache.http.legacy' 
} 

dependencies { 
    compile files('libs/aspectjrt-1.8.2.jar') 
    compile files('libs/isoparser-1.0-RC-27.jar') 
    compile files('libs/multiscreen-android-1.1.11.jar') 
    compile files('libs/picasso-2.5.2.jar') 
    compile files('libs/volley.jar') 
    compile 'com.facebook.android:facebook-android-sdk:4.5.0' 
    compile 'com.android.support:appcompat-v7:23.0.1' 
    compile 'com.android.support:support-v13:+' 

    /* NEW DEPENDENCIES BELOW THIS LINE */ 
    compile 'com.android.support:design:23.0.1' 
    compile 'com.android.support:cardview-v7:23.1.0' 
    compile 'com.github.bumptech.glide:glide:3.6.0' 
    compile 'de.hdodenhof:circleimageview:1.3.0' 

    // Used to optimize rendering of list views 
    // compile 'com.android.support:recyclerview-v7:23.1.0' 
    compile 'uk.co.chrisjenx:calligraphy:2.1.0' 
    //compile 'com.squareup.picasso:picasso:2.5.2' 

    compile 'com.google.android.gms:play-services:7.8.0' 
    //compile 'com.mcxiaoke.volley:library-aar:1.0.0' 
    compile 'com.google.android.gms:play-services-plus:7.8.0' 
    compile 'com.google.android.gms:play-services-wallet:7.8.0' 
} 

回答

27

尝试在你的Android封闭运行使用此选项脚本:

dexOptions { 
    javaMaxHeapSize "4g" 
} 

这将增加最大堆大小DEX操作。你可以找到一些解释in this SO question

+0

修复它。谢谢! – codeshark

+0

@ android-user欢迎您)添加了另一个问题的链接,其中此选项被描述为alittle – Stanislav