-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathgradle.properties
More file actions
34 lines (34 loc) · 1.58 KB
/
Copy pathgradle.properties
File metadata and controls
34 lines (34 loc) · 1.58 KB
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
# Android
android.useAndroidX=true
android.nonTransitiveRClass=true
## Disable buildFeatures flags by default: https://developer.android.com/build/releases/gradle-plugin#default-changes
android.defaults.buildfeatures.buildconfig=false
android.defaults.buildfeatures.renderscript=false
android.defaults.buildfeatures.resvalues=false
android.defaults.buildfeatures.shaders=false
# Gradle
## Ensure important default jvmargs aren't overwritten. See https://github.com/gradle/gradle/issues/19750
org.gradle.jvmargs=-Xmx8g -XX:MaxMetaspaceSize=1g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
org.gradle.parallel=true
org.gradle.caching=true
org.gradle.configuration-cache=true
org.gradle.configuration-cache.parallel=true
org.gradle.kotlin.dsl.allWarningsAsErrors=true
org.gradle.tooling.parallel=true
org.gradle.unsafe.isolated-projects=true
org.gradle.configuration-cache.problems=warn
# Kotlin
kotlin.code.style=official
kotlin.incremental=true
kotlin.compiler.execution.strategy=in-process
## Use npm for Kotlin Wasm/JS tooling to avoid Yarn's project-level distribution repository.
kotlin.js.yarn=false
## Dokka workaround for Gradle project isolation violations
## See https://github.com/Kotlin/dokka/issues/4488
org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled
org.jetbrains.dokka.experimental.gradle.pluginMode.noWarn=true
org.jetbrains.dokka.experimental.gradle.pluginMode.nowarn=true
org.jetbrains.dokka.experimental.tryK2=true
org.jetbrains.dokka.experimental.tryK2.noWarn=true
org.jetbrains.dokka.experimental.tryK2.nowarn=true
org.jetbrains.dokka.internal.enableWorkaroundKT80551=true