David Liu

update readme to reflect change in LiveKit.connect api

... ... @@ -93,6 +93,7 @@ class MainActivity : AppCompatActivity(), RoomListener {
url,
token,
ConnectOptions(),
RoomOptions(),
this
)
val localParticipant = room.localParticipant
... ...
... ... @@ -68,7 +68,7 @@ class LiveKit {
roomOptions: RoomOptions = RoomOptions(),
listener: RoomListener?
): Room {
val room = create(appContext)
val room = create(appContext, roomOptions)
room.listener = listener
room.connect(url, token, options)
... ...