33 lines
1.4 KiB
Properties
33 lines
1.4 KiB
Properties
# suppress inspection "UnusedProperty" for whole file
|
|
|
|
kotlin.code.style=official
|
|
|
|
# For optimal compilation performance
|
|
org.gradle.jvmargs=-Xmx2G -XX:+UseParallelGC
|
|
kotlin.incremental.multiplatform=true
|
|
# https://kotlinlang.org/docs/gradle.html#check-for-jvm-target-compatibility-of-related-compile-tasks
|
|
kotlin.jvm.target.validation.mode=error
|
|
org.gradle.parallel=true
|
|
org.gradle.caching=true
|
|
|
|
#org.gradle.configuration-cache=true
|
|
#org.gradle.configuration-cache.parallel=true
|
|
#org.gradle.configuration-cache.problems=warn
|
|
|
|
# Whether to automatically bundle the Kotlin standard library (true by default)
|
|
# https://kotlinlang.org/docs/gradle.html#dependency-on-the-standard-library
|
|
kotlin.stdlib.default.dependency=true
|
|
kotlin.mpp.import.legacyTestSourceSetDetection=true
|
|
|
|
# Enable Dokka 2.0.0
|
|
org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled
|
|
org.jetbrains.dokka.experimental.gradle.pluginMode.noWarn=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
|
|
# Enables namespacing of each library's R class so that its R class includes only the
|
|
# resources declared in the library itself and none from the library's dependencies,
|
|
# thereby reducing the size of the R class for that library
|
|
android.nonTransitiveRClass=true |