Skip to content

Commit 63bd04d

Browse files
committed
Merge branch 'develop'
2 parents 2937415 + d24de95 commit 63bd04d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docusaurus/docs/Android/02-tutorials/02-audio-room.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

197197
This 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.
199199
In addition to that it also stores the title and description of the room in the custom data of the call object.
200200

201201
By default calls of type `audio_room` start with backstage mode enabled.

stream-video-android-core/todo.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,11 @@
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)

0 commit comments

Comments
 (0)