File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ import org.jetbrains.dokka.gradle.tasks.DokkaGenerateTask
2+
13plugins {
24 alias(libs.plugins.android.library)
35 alias(libs.plugins.kotlin.compose)
@@ -63,8 +65,11 @@ dependencies {
6365// Creates a JAR file from the output of the dokkaHtml task.
6466// This is used to publish the documentation along with the library.
6567tasks.register<Jar >(" javadocJar" ) {
66- dependsOn(tasks.named(" dokkaHtml" ))
67- from(tasks.named< org.jetbrains.dokka.gradle.DokkaTask > (" dokkaGenerateHtml" ).flatMap { it.outputDirectory })
68+ val dokkaHtml = tasks.named<DokkaGenerateTask >(" dokkaGenerateHtml" )
69+
70+ dependsOn(dokkaHtml)
71+
72+ from(dokkaHtml.flatMap { it.outputDirectory })
6873 archiveClassifier.set(" javadoc" )
6974}
7075
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ agp = "9.0.0"
33kotlin = " 2.3.0"
44coreKtx = " 1.17.0"
55
6- activityCompose = " 1.12.2 "
7- composeBom = " 2026.01.00 "
6+ activityCompose = " 1.12.3 "
7+ composeBom = " 2026.01.01 "
88
99androidx-lifecycle-compose = " 2.10.0"
1010
You can’t perform that action at this time.
0 commit comments