When user joins a room that has another individual already in the room then the person joining should see the video and audio of the user already in the room*.
As seen in the docs, on room initialization I iterate over all participants in the room to attach to their track by executing participant.tracks.forEach(publication => publication.track.attach())
. However I get an error because track is undefined which I learn was because I was not subscribed to the track.
How do I subscribe to tracks/track publication of users who are already in the room?
*The user already in the room is using and old Android SDK and the user in the room is using the latest 2.0 Javascript SDK