Skip to content

Instantly share code, notes, and snippets.

@wongk
Created February 18, 2020 21:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wongk/7e881cc5df9efd6a954fa2fbb4684e2a to your computer and use it in GitHub Desktop.
Save wongk/7e881cc5df9efd6a954fa2fbb4684e2a to your computer and use it in GitHub Desktop.
Blog - KMP publishing - configure Dokka
tasks.named<DokkaTask>("dokka") {
multiplatform {
create("android") {
targets = listOf("Android")
platform = "jvm"
skipEmptyPackages = true
}
create("ios") {
targets = listOf("iOS")
platform = "native"
skipEmptyPackages = true
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment