Android Problem fixes: Unterschied zwischen den Versionen

Aus wiki
Wechseln zu: Navigation, Suche
(Die Seite wurde neu angelegt: « dexOptions { incremental true javaMaxHeapSize "4g" }»)
 
Zeile 1: Zeile 1:
 +
UNEXPECTED TOP-LEVEL ERROR:
 +
java.lang.OutOfMemoryError: GC overhead limit exceeded
 +
 +
add this to your build.gradle of your project, not modules
 +
 
  dexOptions {
 
  dexOptions {
 
         incremental true
 
         incremental true
 
         javaMaxHeapSize "4g"
 
         javaMaxHeapSize "4g"
 
     }
 
     }

Version vom 27. August 2015, 11:43 Uhr

UNEXPECTED TOP-LEVEL ERROR: java.lang.OutOfMemoryError: GC overhead limit exceeded

add this to your build.gradle of your project, not modules

dexOptions {
       incremental true
       javaMaxHeapSize "4g"
   }