-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathgradle.properties
More file actions
23 lines (19 loc) · 856 Bytes
/
Copy pathgradle.properties
File metadata and controls
23 lines (19 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#Gradle
org.gradle.jvmargs=-Xmx4096M -Dfile.encoding=UTF-8 -Dkotlin.daemon.jvm.options\="-Xmx2048M"
org.gradle.caching=true
org.gradle.configuration-cache=false
#Kotlin
kotlin.code.style=official
kotlin.daemon.jvmargs=-Xmx2048M
#Run the Kotlin compiler inside the Gradle daemon (JDK 21 via gradle-daemon-jvm.properties) so the
#Metro 1.2.0 compiler plugin — compiled for JDK 21 — never lands on a stray JDK 17 from JAVA_HOME.
kotlin.compiler.execution.strategy=in-process
#Android
android.useAndroidX=true
android.nonTransitiveRClass=true
#Compose
org.jetbrains.compose.experimental.uikit.enabled=true
#Kotlin/Native — disable compiler caches (avoids "Failed to build cache" link errors
#with newer Xcode toolchains; trades a slower link for a reliable build).
kotlin.native.cacheKind.iosSimulatorArm64=none
kotlin.native.cacheKind.iosArm64=none