diff --git a/app/src/main/java/com/example/jellyfishandroidexample/ParticipantVideoView.kt b/app/src/main/java/com/example/jellyfishandroidexample/ParticipantVideoView.kt index 752059b..0514b00 100644 --- a/app/src/main/java/com/example/jellyfishandroidexample/ParticipantVideoView.kt +++ b/app/src/main/java/com/example/jellyfishandroidexample/ParticipantVideoView.kt @@ -9,8 +9,8 @@ import androidx.compose.runtime.remember import androidx.compose.runtime.setValue import androidx.compose.ui.Modifier import androidx.compose.ui.viewinterop.AndroidView -import com.jellyfishdev.jellyfishclient.webrtc.VideoTrack import com.jellyfishdev.jellyfishclient.webrtc.VideoTextureViewRenderer +import com.jellyfishdev.jellyfishclient.webrtc.VideoTrack import org.webrtc.RendererCommon enum class VideoViewLayout { diff --git a/app/src/main/java/com/example/jellyfishandroidexample/RoomViewModel.kt b/app/src/main/java/com/example/jellyfishandroidexample/RoomViewModel.kt index c3b0494..05bf341 100644 --- a/app/src/main/java/com/example/jellyfishandroidexample/RoomViewModel.kt +++ b/app/src/main/java/com/example/jellyfishandroidexample/RoomViewModel.kt @@ -3,15 +3,15 @@ package com.example.jellyfishandroidexample import android.app.Application import androidx.lifecycle.AndroidViewModel import androidx.lifecycle.viewModelScope -import com.jellyfishdev.jellyfishclient.webrtc.SimulcastConfig -import com.jellyfishdev.jellyfishclient.webrtc.LocalVideoTrack -import com.jellyfishdev.jellyfishclient.webrtc.RemoteVideoTrack -import com.jellyfishdev.jellyfishclient.webrtc.VideoParameters import com.jellyfishdev.jellyfishclient.Config import com.jellyfishdev.jellyfishclient.JellyfishClient import com.jellyfishdev.jellyfishclient.JellyfishClientListener import com.jellyfishdev.jellyfishclient.Peer import com.jellyfishdev.jellyfishclient.TrackContext +import com.jellyfishdev.jellyfishclient.webrtc.LocalVideoTrack +import com.jellyfishdev.jellyfishclient.webrtc.RemoteVideoTrack +import com.jellyfishdev.jellyfishclient.webrtc.SimulcastConfig +import com.jellyfishdev.jellyfishclient.webrtc.VideoParameters import kotlinx.coroutines.flow.MutableStateFlow import kotlinx.coroutines.launch