Skip to content

Commit

Permalink
change webrtc library. (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
RakshakGaind0910 authored Feb 24, 2023
1 parent e73ddae commit 714bd24
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ dependencies {

implementation deps.dialpad

implementation deps.webrtc
implementation "io.getstream:stream-webrtc-android:1.0.0"

implementation deps.gson
implementation deps.retrofit.runtime
Expand Down
2 changes: 1 addition & 1 deletion telnyx_rtc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ dependencies {
implementation deps.material
implementation deps.constraint_layout

implementation deps.webrtc
implementation "io.getstream:stream-webrtc-android:1.0.0"

implementation deps.gson
implementation deps.retrofit.runtime
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ internal class Peer(
localAudioTrack.setEnabled(true)
localAudioTrack.setVolume(1.0)
localStream.addTrack(localAudioTrack)
peerConnection?.addStream(localStream)
peerConnection?.addTrack(localAudioTrack)
}

/**
Expand Down

0 comments on commit 714bd24

Please sign in to comment.