You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 18, 2023. It is now read-only.
I've found that on my Android implementation of this plugin that after leaving a Session, the audio profile on my device remains in 'In-Call' mode, and pressing the physical volume buttons continue to adjust 'In-Call Volume'. This persists at least until the app is force closed, and in some cases will even remain until the device is restarted. I've tested this on a variety of devices, such as the Pixel 3XL and Note 9 (both Android 9) and an LG-X230 (Android 6.0).
I've noticed that every time the app attempts to call session.disconnect(), it throws an error " Only the original thread that created a view hierarchy can touch its views".
This is how a session is terminated:
disconnectCall () {
if (this.publisher) {
this.publisher.destroy()
this.publisher = null
}
if (this.session) {
this.session.disconnect()
this.session = null
}
I've tried a variety of the available functions, such as session.unpublish(publisher) and session.disconnect() but so far only the above implementation that seems to successfully kill the connection and remove all the video elements.
The text was updated successfully, but these errors were encountered:
I've found that on my Android implementation of this plugin that after leaving a Session, the audio profile on my device remains in 'In-Call' mode, and pressing the physical volume buttons continue to adjust 'In-Call Volume'. This persists at least until the app is force closed, and in some cases will even remain until the device is restarted. I've tested this on a variety of devices, such as the Pixel 3XL and Note 9 (both Android 9) and an LG-X230 (Android 6.0).
I've noticed that every time the app attempts to call
session.disconnect()
, it throws an error " Only the original thread that created a view hierarchy can touch its views".This is how a session is terminated:
I've tried a variety of the available functions, such as
session.unpublish(publisher)
andsession.disconnect()
but so far only the above implementation that seems to successfully kill the connection and remove all the video elements.The text was updated successfully, but these errors were encountered: