v1.6.3
What's Changed
We've identified an unexpected behavior on Android 11+ devices that may reset AudioManager.mode
to normal. This may unexpectedly result in being unable to change the volume properly. To workaround this, we now play a silent audio track while no remote audio tracks are playing. If you would like to disable the workaround, you can disable it when creating the Room
object:
LiveKit.create(
appContext = context,
overrides = LiveKitOverrides(
audioOptions = AudioOptions(disableCommunicationModeWorkaround = false)
)
)
Note that this workaround is only used for Android 11+ and when the audio mode is set to MODE_IN_COMMUNICATION
.
Full Changelog: v1.6.2...v1.6.3