Skip to content
Open
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
2 changes: 1 addition & 1 deletion simple-chatbot/client/android/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
accompanistPermissions = "0.34.0"
agp = "8.7.3"
constraintlayoutCompose = "1.1.0"
pipecatClientDaily = "1.0.2"
pipecatClientDaily = "1.0.3"
kotlin = "2.0.20"
coreKtx = "1.15.0"
lifecycleRuntimeKtx = "2.8.7"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,26 @@ class VoiceClientManager(private val context: Context) {
override fun onRemoteAudioLevel(level: Float, participant: Participant) {
botAudioLevel.floatValue = level
}

override fun onConnected() {
Log.i(TAG, "Connected")
}

override fun onBotConnected(participant: Participant) {
Log.i(TAG, "Bot connected: $participant")
}

override fun onBotDisconnected(participant: Participant) {
Log.i(TAG, "Bot disconnected: $participant")
}

override fun onParticipantJoined(participant: Participant) {
Log.i(TAG, "Participant joined: $participant")
}

override fun onParticipantLeft(participant: Participant) {
Log.i(TAG, "Participant left: $participant")
}
}

val options = PipecatClientOptions(
Expand Down
Loading