-
Notifications
You must be signed in to change notification settings - Fork 0
/
gradle.properties
35 lines (27 loc) · 1.48 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
# Maven coordinates
appGroup=dev.opensavvy.decouple
# Allow Gradle to execute tasks from different subprojects in parallel.
org.gradle.parallel=true
# The Gradle Configuration Cache allows to skip the configuration phase if the environment has not changed.
# The configuration here is quite pessimistic, and will abort the build if any issue is detected.
# In these cases, you may want to disable to report the problem and disable the Configuration Cache.
# See https://docs.gradle.org/current/userguide/configuration_cache.html
org.gradle.configuration-cache=true
org.gradle.configuration-cache.max-problems=1
# The Gradle Build Cache allows to reuse previous execution results.
# Execution results are stored by the CI pipeline in an external server, so developpers do not need to rebuild everything
# when first cloning the project.
# See https://docs.gradle.org/current/userguide/build_cache.html
org.gradle.caching=true
# Configuration on demand allows Gradle to only configure projects which take part in the build.
# See https://docs.gradle.org/current/userguide/multi_project_configuration_and_execution.html#sec:configuration_on_demand
org.gradle.configureondemand=true
# Android
android.nonTransitiveRClass=true
android.useAndroidX=true
# Compose Multiplatform
org.jetbrains.compose.experimental.wasm.enabled=true
# KMP
kotlin.mpp.androidSourceSetLayoutVersion=2
kotlin.mpp.enableCInteropCommonization=true
org.gradle.jvmargs=-Xmx2048M -Dfile.encoding=UTF-8 -Dkotlin.daemon.jvm.options\="-Xmx2048M"