I update my Android Studio and try to run an app but it shows the error like this..
Error:Execution failed for task ':app:transformClassesWithDexForDebug'.> com.android.build.api.transform.TransformException: com.android.ide.common.process.ProcessException: java.util.concurrent.ExecutionException: java.lang.OutOfMemoryError: GC overhead limit exceeded
before updation of Android Studio same app run fine, so i tried to solve the issue i found only one which is i already done into gradle file..
dexOptions {
incremental true
javaMaxHeapSize "4g"
}
So now what can i do to solve this issue, please help me out. Thanks.