Skip to content
This repository was archived by the owner on Apr 4, 2023. It is now read-only.

Commit 5ad3b7c

Browse files
#62 :transformClassesWithDexForF0F1F2Debug FAILED
1 parent 7b77414 commit 5ad3b7c

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

README.md

+20
Original file line numberDiff line numberDiff line change
@@ -490,6 +490,26 @@ android {
490490
}
491491
```
492492

493+
#### java.lang.OutOfMemoryError: GC overhead limit exceeded
494+
495+
Increase the Java Max Heap Size like this (the bit at the end):
496+
497+
```
498+
android {
499+
defaultConfig {
500+
applicationId "my.package.id"
501+
multiDexEnabled true
502+
generatedDensities = []
503+
}
504+
aaptOptions {
505+
additionalParameters "--no-version-vectors"
506+
}
507+
dexOptions {
508+
javaMaxHeapSize "4g"
509+
}
510+
}
511+
```
512+
493513
#### FirebaseApp with name [DEFAULT] doesn't exist
494514
Another possible error is "FirebaseApp with name [DEFAULT] doesn't exist." which will be solved by
495515
placing `google-services.json` to `platforms/android/google-services.json` (see above), and making

0 commit comments

Comments
 (0)