Skip to content
Merged
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
10 changes: 5 additions & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[versions]
agp = "8.5.2"
kotlin = "2.0.20"
coreKtx = "1.13.1"
kotlin = "2.3.10"
coreKtx = "1.17.0"
junit = "4.13.2"
junitVersion = "1.2.1"
appcompat = "1.7.0"
kotlinxSerializationJson = "1.7.1"
kotlinxSerializationPlugin = "2.0.20"
kotlinxSerializationJson = "1.10.0"
kotlinxSerializationPlugin = "2.3.10"
okhttp = "4.12.0"
dokka = "1.9.20"
dokka = "2.1.0"

[libraries]
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
Expand Down
18 changes: 13 additions & 5 deletions pipecat-client-android/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import org.jetbrains.kotlin.gradle.dsl.JvmTarget

plugins {
alias(libs.plugins.android.library)
alias(libs.plugins.jetbrains.kotlin.android)
Expand Down Expand Up @@ -26,16 +28,22 @@ android {
}

compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}

lint {
targetSdk = 35
}

kotlinOptions {
jvmTarget = "1.8"
publishing {
singleVariant("release") {}
}
}

kotlin {
compilerOptions {
jvmTarget.set(JvmTarget.JVM_11)
}
}

Expand All @@ -60,7 +68,7 @@ publishing {
register<MavenPublication>("release") {
groupId = "ai.pipecat"
artifactId = "client"
version = "1.1.0"
version = "1.2.0"

pom {
name.set("Pipecat Client")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ data class LLMContextMessage(
@SerialName("user")
User("user"),
@SerialName("assistant")
Assistant("assistant")
Assistant("assistant"),
@SerialName("system")
System("system"),
}
}