I am getting out of memory issue very often after updating buildToolsVersion '22.0.1'
to buildToolsVersion '23.0.1'
I am really confused and dont know how to solve this issue, since this error showing only with buildTools
version 23.0.1
. Whereas it is working fine when I change it to 22.0.1
. Please help me. I am posting the error which I am getting as follows,
Uncaught translation error: java.util.concurrent.ExecutionException: java.lang.OutOfMemoryError: Java heap space
Uncaught translation error: java.util.concurrent.ExecutionException: java.lang.OutOfMemoryError: Java heap space
Uncaught translation error: java.util.concurrent.ExecutionException: java.lang.OutOfMemoryError: GC overhead limit exceeded
Uncaught translation error: java.util.concurrent.ExecutionException: java.lang.OutOfMemoryError: Java heap space
Uncaught translation error: java.util.concurrent.ExecutionException: java.lang.OutOfMemoryError: GC overhead limit exceeded
Uncaught translation error: java.util.concurrent.ExecutionException: java.lang.OutOfMemoryError: Java heap space
Error:Execution failed for task ':app:transformClassesWithDexForDebug'.
> com.android.build.transform.api.TransformException: com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Program Files\Java\jdk1.7.0_25\bin\java.exe'' finished with non-zero exit value 1
build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion '23.0.1'
defaultConfig {
applicationId "com.example.app"
minSdkVersion 14
targetSdkVersion 23
versionCode 1
versionName "1.0"
// Enabling multidex support.
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.android.support:support-v4:23.0.1'
compile 'com.android.support:design:23.0.0'
compile 'com.android.support:cardview-v7:23.0.1'
compile 'com.android.support:recyclerview-v7:23.0.1'
compile 'com.android.support:palette-v7:23.0.1'
compile 'com.google.android.gms:play-services:7.5.0'
}
Thanks in advance.
I was facing the same issue by adding this in build.gradle file (module level) solved my problem
The accepted answer works but I was confused for a bit about where to put the
dexOptions
in mybuild.gradle
. We actually put it under the android section.Here is example snippet:
use this in your app level build.gradle:
Actually for me worked a more complex solution, which combine all from above, plus enabling multidex in the build.gradle file for the module.
A. Add this line in the defaultConfig section to enable multiDex
B. Than set the dexOptions, like this:
C. After changing to multidex and setting the heap to 4g, an overflow error may occur which lead me to uncomment and modify the jvmargs line from gradle.properties file of the project, like:
The values may differ depending on your machine. You can also use double values.
Add this to your android closure in your build.gradle file:
Android Studio Google JAR file causing GC overhead limit exceeded error
I solved this problem
(if not Exist _JAVA_OPTIONS than create it click on New Button)
I think it will be helpfull for you also. if it usefull upvote this answer.