File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
docusaurus/docs/Android/02-tutorials
stream-video-android-core Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -90,8 +90,8 @@ class MainActivity : ComponentActivity() {
9090 lifecycleScope.launch {
9191 val result = call.join(create = true , createOptions = CreateCallOptions (
9292 members = listOf (
93- MemberRequest (userId = " tommaso " , role= " moderator" , custom = emptyMap()),
94- MemberRequest (userId = " thierry " , role= " moderator" , custom = emptyMap())
93+ MemberRequest (userId = " jack " , role= " moderator" , custom = emptyMap()),
94+ MemberRequest (userId = " sophia " , role= " moderator" , custom = emptyMap())
9595 ), custom = mapOf (
9696 " title" to " Compose Trends" ,
9797 " description" to " Talk about how easy compose makes it to reuse and combine UI"
@@ -195,7 +195,7 @@ Now when you run the sample app it will connect successfully and you will see a
195195
196196
197197This example shows how to create and join a call with one API call.
198- It creates a call of type ` audio_room ` , id ` callId ` and makes the user ids "tommaso " and "thierry " moderators of the call.
198+ It creates a call of type ` audio_room ` , id ` callId ` and makes the user ids "jack " and "sophia " moderators of the call.
199199In addition to that it also stores the title and description of the room in the custom data of the call object.
200200
201201By default calls of type ` audio_room ` start with backstage mode enabled.
Original file line number Diff line number Diff line change 110110### App & Compose
111111
112112- [X] Telemetry to firebase/crashlytics (with an opt out, or research alternatives)
113- - [ ] Call Preview components (CallLobbyContent + CallLobbyViewModel)
113+ - [X ] Call Preview components (CallLobbyContent + CallLobbyViewModel)
114114- [X] Reactions don't show up
115115- [ ] Chat integration (we need an event from the server though)
116- - [ ] PIP
117- - [ ] When state._ connection.value = RtcConnectionState.Reconnecting we should show a little transparent. “Reconnecting” UI element
116+ - [X ] PIP
117+ - [X ] When state._ connection.value = RtcConnectionState.Reconnecting we should show a little transparent. “Reconnecting” UI element
118118- [ ] Ringing calls + CallService + foreground services/notifications (wait for push and updated endpoints from server)
119119- [X] Screensharing doesn't show up
120120- [X] Improve screensharing (zoomable + fallback)
You can’t perform that action at this time.
0 commit comments