From 024246379945bfcf7f940da14c8cde375052cec0 Mon Sep 17 00:00:00 2001 From: Mike Hardy Date: Thu, 18 Nov 2021 20:41:18 -0500 Subject: [PATCH] fix(android): use JDK11 compatible JVM options See JDK8-->JDK11 migration notes here: https://discuss.circleci.com/t/android-convenience-image-moving-to-java-v11-on-august-17th/36601/4 Related #120 --- src/executors/linux_android.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/executors/linux_android.yml b/src/executors/linux_android.yml index f5f10c9..a3e6a2d 100644 --- a/src/executors/linux_android.yml +++ b/src/executors/linux_android.yml @@ -2,7 +2,7 @@ parameters: java_options: description: Java command options. Note that setting this will override the default options so you might need to supply those as well. type: string - default: '-Xmx1024m -XX:+UnlockExperimentalVMOptions -XX:+UseCGroupMemoryLimitForHeap' + default: '-Xmx1024m -XX:+UnlockExperimentalVMOptions -XX:+UseContainerSupport' gradle_options: description: Gradle command options. Note that setting this will override the default options so you might need to supply those as well. type: string