From d974639f1e8fc59a28597d32eb1944ca64dfdafd Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Mon, 5 Dec 2022 07:47:35 +0600 Subject: [PATCH] fixes in source roots of dokka --- dokka/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dokka/build.gradle b/dokka/build.gradle index 180ed96a0a2..045902ca9fa 100644 --- a/dokka/build.gradle +++ b/dokka/build.gradle @@ -121,11 +121,11 @@ tasks.dokkaHtml { // } named("jvmMain") { - sourceRoots.setFrom(findSourcesWithName("jvmMain", "commonMain")) + sourceRoots.setFrom(findSourcesWithName("jvmMain")) } named("androidMain") { - sourceRoots.setFrom(findSourcesWithName("androidMain", "commonMain")) + sourceRoots.setFrom(findSourcesWithName("androidMain")) } } }