diff options
author | Narr the Reg <juangerman-13@hotmail.com> | 2023-06-06 11:19:20 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-06 11:19:20 -0600 |
commit | d967ab8e79935e2f438f8b2dcc70646d9a8646a8 (patch) | |
tree | 464b10f70d1e5b7e33f27ad16b202229242c811d | |
parent | 7d5cc33feb35704be4c0ed09b331b5db4b44c843 (diff) | |
parent | 0968e315f46461fc9c58be6db60b22dee519c6a7 (diff) |
Merge pull request #10643 from 8bitDream/gradle-config
android: Improve Gradle build configuration
-rw-r--r-- | src/android/gradle.properties | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/android/gradle.properties b/src/android/gradle.properties index 653a35ce8..e2f278f33 100644 --- a/src/android/gradle.properties +++ b/src/android/gradle.properties @@ -9,8 +9,9 @@ # http://www.gradle.org/docs/current/userguide/build_environment.html # Specifies the JVM arguments used for the daemon process. # The setting is particularly useful for tweaking memory settings. -org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 +org.gradle.jvmargs=-Xms512m -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 android.useAndroidX=true # Kotlin code style for this project: "official" or "obsolete": kotlin.code.style=official +kotlin.parallel.tasks.in.project=true android.defaults.buildfeatures.buildconfig=true |