Skip to content

Releases: team-telnyx/telnyx-webrtc-android

1.4.2: Remove Unwanted IPS from SDP (#358)

18 Nov 14:29
9c07e5f
Compare
Choose a tag to compare

ICE candidates are no longer added to the peer connection after the establishment of the call to prevent use of ICE candidates that are not negotiated in the SDP.

1.4.2-beta

31 Oct 19:51
f243f3f
Compare
Choose a tag to compare

Implemented websocket and rtc peer reconnection logic in the event of a network disconnect or network switch.

What's Changed

1.4.1

31 Oct 15:36
6d5a01a
Compare
Choose a tag to compare
  • Implemented websocket and rtc peer reconnection logic in the event of a network disconnect or network switch.

What's Changed

1.4.0

18 Sep 09:01
b4c8a7f
Compare
Choose a tag to compare
  • Update WebRtc Lib
  • Reconnect Socket with Voice-SDK-ID

1.3.9

27 Aug 10:27
5cecdb2
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.3.6...1.3.9

1.3.8

07 Aug 23:52
Compare
Choose a tag to compare

What's Changed

  • Expose Socket State
  fun isSocketConnected(): Boolean {
        return socket.isConnected
    }

Full Changelog: 1.3.6...1.3.8

1.3.7

26 Jul 11:52
Compare
Choose a tag to compare

What's Changed

  • Handle Push Notifications Fix
  • Debug Stats
  • Update Push Notifications Best Practices Section ReadMe
  • Update the connect Method

Description

Migrated credential and token login to connect Method:

We have migrated the individual login methods to connect to the socket and login simultaneously.

 telnyxClient?.connect(it, credentialConfig!!, txPushMetaData,autoLogin: true)

Autologin is enabled by default. Suppose you use the new method with autoLogin set to true. Kindly do not call the connect method or the deprecated methods credential or token login from the SocketStatus.ESTABLISHED -> onConnectionEstablished() callback.

 override fun onConnectionEstablished() {
    //Socket is Connected
}

Full Changelog: 1.3.6...1.3.7

1.3.6

11 Jun 23:35
7851ef0
Compare
Choose a tag to compare

Update Kotlin version to 1.9.0

What's Changed

v1.3.5

21 May 00:01
3e5116c
Compare
Choose a tag to compare

Fix JVM issue with the androidxlifecycle. The androidxlifecycle observer onChanged(..) method was updated to fun onChanged(value: T) which was previously fun onChanged(value: T) the cause of the issue.

v1.3.4

06 May 17:02
0ac0ef4
Compare
Choose a tag to compare

What's Changed

  • Fix Speaker Reset for Multiple Calls