From db0c548e803da301a11c557b21e3d0a2ea79448c Mon Sep 17 00:00:00 2001 From: Alex Baker Date: Wed, 27 Nov 2019 11:29:28 -0600 Subject: [PATCH] Set dexOptions heap size to 2g --- app/build.gradle.kts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 98942a245..ddac5c481 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -21,6 +21,10 @@ android { } } + dexOptions { + javaMaxHeapSize = "2g" + } + lintOptions { setLintConfig(file("lint.xml")) textOutput("stdout")