2017-04-30 08:25:59 +07:00
|
|
|
org.gradle.daemon=true
|
2021-09-29 05:52:48 +07:00
|
|
|
org.gradle.jvmargs=-Xms256m -Xmx1024m --illegal-access=permit \
|
2022-06-12 01:02:21 +07:00
|
|
|
--add-opens=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED \
|
|
|
|
--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED \
|
|
|
|
--add-opens=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED \
|
|
|
|
--add-opens=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED \
|
|
|
|
--add-opens=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED \
|
|
|
|
--add-opens=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED \
|
|
|
|
--add-opens=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED \
|
|
|
|
--add-opens=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED \
|
|
|
|
--add-opens=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED \
|
|
|
|
--add-opens=jdk.compiler/com.sun.tools.javac.jvm=ALL-UNNAMED \
|
|
|
|
--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED \
|
|
|
|
--add-opens=java.base/sun.reflect.annotation=ALL-UNNAMED
|
2021-09-23 05:32:14 +07:00
|
|
|
|
2021-04-03 07:25:07 +07:00
|
|
|
# Multithreaded
|
|
|
|
kapt.use.worker.api=true
|
|
|
|
# Compilation avoidance (see https://kotlinlang.org/docs/kapt.html#compile-avoidance-for-kapt-since-1-3-20)
|
|
|
|
kapt.include.compile.classpath=false
|
2022-01-18 03:40:52 +07:00
|
|
|
# I don't need to use the kotlin stdlib, so remove it to prevent extra bloat & method count issues
|
2021-05-23 00:28:43 +07:00
|
|
|
kotlin.stdlib.default.dependency=false
|
2021-06-14 21:41:19 +07:00
|
|
|
#needed for android compilation
|
2021-06-14 21:42:24 +07:00
|
|
|
android.useAndroidX=true
|
2022-03-28 22:56:45 +07:00
|
|
|
org.gradle.caching=true
|
2021-08-10 01:19:34 +07:00
|
|
|
#used for slow jitpack builds; TODO see if this actually works
|
2021-09-23 07:21:26 +07:00
|
|
|
org.gradle.internal.http.socketTimeout=100000
|
|
|
|
org.gradle.internal.http.connectionTimeout=100000
|
2024-07-07 01:57:49 +07:00
|
|
|
android.enableR8.fullMode=false
|
2024-11-28 00:03:42 +07:00
|
|
|
archash=ae657a7db3
|