-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgradle.properties
65 lines (59 loc) · 3.36 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.
# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx4096M
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
org.gradle.parallel=true
# AndroidX package structure to make it clearer which packages are bundled with the
# Android operating system, and which are packaged with your app's APK
# https://developer.android.com/topic/libraries/support-library/androidx-rn
android.useAndroidX=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official
# By default, Gradle does not use the configuration cache.
# To enable the configuration cache at build time, use the configuration-cache flag:
org.gradle.configuration-cache=false
# By default, Gradle does not use the build cache. Lets enable it here.
org.gradle.caching=true
# This setting controls whether the Android Gradle plugin generates a
# transitive R class or a non-transitive R class.
# A non-transitive R class includes only the resources directly
# defined in your module and none of the resources from its dependencies.
android.nonTransitiveRClass=true
# The instruction binaries.executable() explicitly instructs the Kotlin compiler to emit executable .js files.
# This is the default behavior when using the current Kotlin/JS compiler, but the instruction is explicitly
# required if you are working with the Kotlin/JS IR compiler, or have set kotlin.js.generate.executable.default=false.
# https://kotlinlang.org/docs/js-project-setup.html#webpack-configuration-file
kotlin.js.generate.executable.default=false
# We need this to automatically generate external declarations for kotlin/js interop.
# This feature is still experimental and it causes problems with the IDEs. So we need to
# be careful of it's usage. For now I recommend we generate the dependencies manually.
# https://github.com/Kotlin/dukat
# https://kotlinlang.org/docs/js-external-declarations-with-dukat.html#generate-external-declarations-at-build-time
kotlin.js.experimental.externals=false
# Configurations needed for KMM
org.jetbrains.compose.experimental.jscanvas.enabled=true
org.jetbrains.compose.experimental.macos.enabled=true
org.jetbrains.compose.experimental.uikit.enabled=true
kotlin.native.useEmbeddableCompilerJar=true
# Warning: As of Kotlin 1.9.20, you must add the property kotlin.native.disableCompilerDaemon = true
# For Room's KSP processor to function properly. For more information, see https://youtrack.jetbrains.com/issue/KT-65761.
kotlin.native.disableCompilerDaemon=true
kotlin.mpp.androidSourceSetLayoutVersion=2
kotlin.mpp.enableCInteropCommonization=true
#Compose
org.jetbrains.compose.experimental.wasm.enabled=true
# Gradle will show a warning when a Kotlin/Native target cannot be built on this machine.
# Disable such message.
kotlin.native.ignoreDisabledTargets=true
# Android properties
compileSdkVersion=35
minSdkVersion=26
targetSdkVersion=35