From 10f5f9ee902381315e4032571db0cbe896141fc2 Mon Sep 17 00:00:00 2001 From: Kamil Doległo Date: Wed, 18 Dec 2019 12:55:15 +0100 Subject: Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1408ca53..45f3b4b5 100644 --- a/README.md +++ b/README.md @@ -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"] } } ``` -- cgit