Browse Source

docs(packaging): document the minimizeKotlinStandardLibrary option in the Native distributions tutorial

pull/4948/head
Ellet 6 months ago
parent
commit
123882f0b9
  1. 13
      tutorials/Native_distributions_and_local_execution/README.md

13
tutorials/Native_distributions_and_local_execution/README.md

@ -663,3 +663,16 @@ compose.desktop {
}
}
```
Minimizing the Kotlin library is disabled by default.
To minimize it,
set the following property via Gradle DSL:
```
compose.desktop {
application {
buildTypes.release.proguard {
minimizeKotlinStandardLibrary.set(true)
}
}
}
```
Loading…
Cancel
Save