-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgradle.properties
More file actions
44 lines (43 loc) · 1.52 KB
/
gradle.properties
File metadata and controls
44 lines (43 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#Gradle
org.gradle.jvmargs=-Xmx16g -XX:MaxMetaspaceSize=8g -XX:+UseG1GC -XX:+UseStringDeduplication -XX:+OptimizeStringConcat -Dkotlin.daemon.jvm.options\="-Xmx16g"
org.gradle.caching=true
org.gradle.configuration-cache=true
org.gradle.daemon=true
org.gradle.parallel=true
org.gradle.workers.max=12
org.gradle.vfs.watch=true
org.gradle.vfs.verbose=false
#Kotlin
kotlin.code.style=official
kotlin.native.ignoreDisabledTargets=true
kotlin.daemon.jvmargs=-Xmx16g -XX:+UseG1GC -XX:+UseStringDeduplication
kotlin.wasm.ir.codegen.timeoutInSeconds=300
kotlin.wasm.ir.dependencies.loadScheduleHint=500
kotlin.freeCompilerArgs=-Xexpect-actual-classes
kotlin.incremental=true
kotlin.incremental.multiplatform=true
kotlin.incremental.js=true
kotlin.incremental.js.klib=true
kotlin.compiler.execution.strategy=in-process
#Android
android.useAndroidX=true
android.nonTransitiveRClass=true
android.suppressUnsupportedCompileSdk=35
android.enableJetifier=false
android.enableR8.fullMode=true
android.enableResourceOptimizations=true
# MPP
kotlin.mpp.androidSourceSetLayoutVersion=2
kotlin.mpp.enableCInteropCommonization=true
kotlin.mpp.stability.nowarn=true
# Compose
org.jetbrains.compose.experimental.uikit.enabled=true
org.jetbrains.compose.experimental.jscanvas.enabled=true
org.jetbrains.compose.experimental.wasm.enabled=true
org.jetbrains.compose.compiler.cache.enabled=true
# Other
org.gradle.unsafe.configuration-cache=true
org.gradle.unsafe.configuration-cache-problems=warn
kapt.use.worker.api=true
kapt.incremental.apt=true
kapt.include.compile.classpath=false