diff options
author | Kamil Doległo <kamilok1965@interia.pl> | 2019-12-18 12:55:15 +0100 |
---|---|---|
committer | Kamil Doległo <kamilok1965@interia.pl> | 2019-12-18 12:55:15 +0100 |
commit | 10f5f9ee902381315e4032571db0cbe896141fc2 (patch) | |
tree | 15ca8a27c56b8b5240451ce24bf59dec3b980307 | |
parent | 41ac08a63a3813b1d6b2ede0c50e8269c9aeb3aa (diff) | |
download | dokka-10f5f9ee902381315e4032571db0cbe896141fc2.tar.gz dokka-10f5f9ee902381315e4032571db0cbe896141fc2.tar.bz2 dokka-10f5f9ee902381315e4032571db0cbe896141fc2.zip |
Update README.md
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -377,11 +377,11 @@ apply plugin: 'org.jetbrains.dokka' There is also a `noAndroidSdkLink` configuration parameter that works similar to `noJdkLink` and `noStdlibLink` By default the variant documented by dokka is the first release variant encountered. -You can override that by setting the `androidVariant` property inside the `configuration` (or specific platform) block: +You can override that by setting the `androidVariants` property inside the `configuration` (or specific platform) block: ```groovy dokka { configuration { - androidVariant = "debug" + androidVariants = ["debug", "release"] } } ``` |