Android Studio Google JAR file causing GC overhead limit exceeded error

I think there’s a separate way to raise the heap limit of the dexing operation. Add this to your android closure in your build.gradle file:

dexOptions {
    javaMaxHeapSize "4g"
}

and see if that helps.

(idea courtesy of this answer from Scott Barta)

Leave a Comment