Files
lawnchair/gradle.properties
Goooler 4d38496a9c Use the default G1GC on JDK 17+
Remove -XX:+UseParallelGC and use the default garbage collector as the improvements are minimal on JDK 17+
2022-10-12 18:10:49 +08:00

16 lines
558 B
Properties

# https://developer.android.com/studio/build/shrink-code#full-mode
android.enableR8.fullMode=true
android.nonTransitiveRClass=true
android.useAndroidX=true
kotlin.code.style=official
# https://blog.jetbrains.com/kotlin/2022/07/a-new-approach-to-incremental-compilation-in-kotlin/
kotlin.incremental.useClasspathSnapshot=true
org.gradle.caching=true
org.gradle.jvmargs=-Xmx4g -Dfile.encoding=UTF-8
org.gradle.parallel=true
# https://docs.gradle.org/7.4/userguide/configuration_cache.html
org.gradle.unsafe.configuration-cache=true
org.gradle.vfs.watch=true