-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgradle.properties
35 lines (29 loc) · 1.08 KB
/
gradle.properties
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
#Gradle
org.gradle.jvmargs=-Xmx4G -Dfile.encoding=UTF-8 -Dkotlin.daemon.jvm.options\="-Xmx4G"
kotlin.mpp.androidGradlePluginCompatibility.nowarn=true
#below disabled to enable Dokka
#org.gradle.caching=true
#org.gradle.configuration-cache=true
org.gradle.daemon=true
org.gradle.parallel=true
#Kotlin
kotlin.code.style=official
kotlin.js.compiler=ir
kotlin.native.cacheKind.iosArm64=none
kotlin.native.cacheKind.iosSimulatorArm64=none
#Android
android.useAndroidX=true
android.nonTransitiveRClass=true
#iOS
kotlin.apple.xcodeCompatibility.nowarn=true
#ERROR: Compose targets '[jscanvas, macos]' are experimental and may have bugs!
#But, if you still want to use them, add to gradle.properties:
org.jetbrains.compose.experimental.jscanvas.enabled=true
org.jetbrains.compose.experimental.macos.enabled=true
#Maven Publishing
#https://stackoverflow.com/questions/68127791/configuration-cache-enabled-causes-build-to-fail
org.gradle.unsafe.configuration-cache-problems=WARN
systemProp.org.gradle.internal.publish.checksums.insecure=true
#Dokka
org.gradle.caching=false
org.gradle.configuration-cache=false