From 16726854e50569458ff92a3cb28b4bc6311feca3 Mon Sep 17 00:00:00 2001 From: imknown Date: Thu, 16 Sep 2021 22:28:08 +0800 Subject: [PATCH] Fix Gradle 'minifyReleaseWithR8' NPE: https://stackoverflow.com/questions/60896733/execution-failed-for-task-appminifyreleasewithr8-java-lang-nullpointerexcept/ --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 190b97ab..ccd7ae13 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,7 +8,7 @@ # # Specifies the JVM arguments used for the daemon process. # The setting is particularly useful for tweaking memory settings. -org.gradle.jvmargs=-Xmx2048M -XX:+UseParallelGC +org.gradle.jvmargs=-Xmx4096M -XX:+UseParallelGC # # When configured, Gradle will run in incubating parallel mode. # This option should only be used with decoupled projects. More details, visit