Skip to content

Commit e7612c1

Browse files
authored
Dokka (#72)
* add api client with grpc kotlin * get dokka docs generating
1 parent cffe1f6 commit e7612c1

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ plugins {
1313
id 'com.android.library' version '7.3.1' apply false
1414
id 'org.jetbrains.kotlin.android' version '1.8.0' apply false
1515
id 'io.github.gradle-nexus.publish-plugin' version "1.2.0"
16+
id "org.jetbrains.dokka" version "1.8.10"
1617
}
1718

1819
group = "org.xmtp"

library/build.gradle

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ plugins {
55
id 'org.jetbrains.kotlin.android'
66
id 'com.google.protobuf' version '0.9.1'
77
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"))
813
}
914

1015
android {

0 commit comments

Comments
 (0)