Umesh Gupta
09/16/2024, 2:21 PMUmesh Gupta
09/16/2024, 2:21 PM#Gradle
org.gradle.jvmargs=-Xmx6g -Dfile.encoding=UTF-8 -Dorg.gradle.debug=true
org.gradle.caching=true
org.gradle.configureondemand=true
org.gradle.workers.max=8
org.gradle.parallel=false
#Kotlin
kotlin.code.style=official
kotlin.daemon.jvm.options=-Xmx2G
kotlin.daemon.useFallbackStrategy=true
#MPP
kotlin.mpp.stability.nowarn=true
kotlin.mpp.enableCInteropCommonization=true
kotlin.mpp.commonizerLogLevel=info
kotlin.mpp.androidSourceSetLayoutVersion=2
mobile.multiplatform.iosTargetWarning=false
kotlin.mpp.androidGradlePluginCompatibility.nowarn=true
kotlin.mpp.applyDefaultHierarchyTemplate=false
compose.kotlin.native.manageCacheKind=false
kotlin.incremental.native=true
kotlin.incremental.multiplatform=true
experimentalStrongSkipping=true
# <https://docs.gradle.org/7.6/userguide/configuration_cache.html>
#org.gradle.configuration-cache=true
#Compose
org.jetbrains.compose.experimental.uikit.enabled=true
org.jetbrains.compose.experimental.jscanvas.enabled=true
org.jetbrains.compose.experimental.wasm.enabled=true
compose.resources.always.generate.accessors=true
#IOS
kotlin.native.cacheKind.iosX64=none
kotlin.native.cacheKind.iosSimulatorArm64=none
compose.ios.resources.sync=true
#kotlin.native.disableCompilerDaemon = true
kotlin.apple.xcodeCompatibility.nowarn=true
Umesh Gupta
09/17/2024, 9:15 AM