Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ plugins {
id("com.android.library") version "8.2.2" apply false
id("com.google.protobuf") version "0.9.4" apply false
id("com.vanniktech.maven.publish") version "0.30.0" apply false
id("org.jetbrains.dokka") version "1.9.20" apply false
}

allprojects {
Expand Down
9 changes: 9 additions & 0 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ plugins {
id("org.jetbrains.kotlin.android")
kotlin("plugin.serialization")
id("com.vanniktech.maven.publish")
id("org.jetbrains.dokka")
}

android {
Expand All @@ -27,6 +28,14 @@ android {

}

tasks.withType<org.jetbrains.dokka.gradle.DokkaTaskPartial>().configureEach {
dokkaSourceSets.configureEach {
jdkVersion.set(17)
suppressInheritedMembers.set(false)
suppressObviousFunctions.set(true)
}
}

dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.0")
Expand Down
9 changes: 9 additions & 0 deletions network/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ plugins {
id("com.google.protobuf")
kotlin("plugin.serialization")
id("com.vanniktech.maven.publish")
id("org.jetbrains.dokka")
}

android {
Expand All @@ -28,6 +29,14 @@ android {

}

tasks.withType<org.jetbrains.dokka.gradle.DokkaTaskPartial>().configureEach {
dokkaSourceSets.configureEach {
jdkVersion.set(17)
suppressInheritedMembers.set(false)
suppressObviousFunctions.set(true)
}
}

dependencies {
implementation(project(":core"))
implementation(project(":protocol"))
Expand Down
9 changes: 9 additions & 0 deletions persistence-sqlite/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ plugins {
id("org.jetbrains.kotlin.android")
kotlin("plugin.serialization")
id("com.vanniktech.maven.publish")
id("org.jetbrains.dokka")
}

android {
Expand Down Expand Up @@ -31,6 +32,14 @@ android {
}
}

tasks.withType<org.jetbrains.dokka.gradle.DokkaTaskPartial>().configureEach {
dokkaSourceSets.configureEach {
jdkVersion.set(17)
suppressInheritedMembers.set(false)
suppressObviousFunctions.set(true)
}
}

dependencies {
implementation(project(":core"))
implementation("androidx.sqlite:sqlite-ktx:2.4.0")
Expand Down
9 changes: 9 additions & 0 deletions protocol/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ plugins {
id("org.jetbrains.kotlin.android")
id("com.google.protobuf")
id("com.vanniktech.maven.publish")
id("org.jetbrains.dokka")
}

android {
Expand All @@ -27,6 +28,14 @@ android {

}

tasks.withType<org.jetbrains.dokka.gradle.DokkaTaskPartial>().configureEach {
dokkaSourceSets.configureEach {
jdkVersion.set(17)
suppressInheritedMembers.set(false)
suppressObviousFunctions.set(true)
}
}

dependencies {
api("com.google.protobuf:protobuf-kotlin-lite:3.24.4") // Updated version to match protoc if possible, checking latest stable
implementation("com.google.protobuf:protobuf-javalite:3.24.4") // Java lite dependency often needed for generated Java code
Expand Down