We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cffe1f6 commit e7612c1Copy full SHA for e7612c1
build.gradle
@@ -13,6 +13,7 @@ plugins {
13
id 'com.android.library' version '7.3.1' apply false
14
id 'org.jetbrains.kotlin.android' version '1.8.0' apply false
15
id 'io.github.gradle-nexus.publish-plugin' version "1.2.0"
16
+ id "org.jetbrains.dokka" version "1.8.10"
17
}
18
19
group = "org.xmtp"
library/build.gradle
@@ -5,6 +5,11 @@ plugins {
5
id 'org.jetbrains.kotlin.android'
6
id 'com.google.protobuf' version '0.9.1'
7
id "org.jlleitschuh.gradle.ktlint" version "11.0.0"
8
+ id 'org.jetbrains.dokka'
9
+}
10
+
11
+dokkaGfmPartial {
12
+ outputDirectory.set(file("build/docs/partial"))
android {
0 commit comments