youssef hachicha
07/17/2024, 6:07 PMexpect class VideoTrack
its actual in android looks like this
import org.webrtc.VideoTrack
actual typealias VideoTrack = VideoTrack
and I get this error when ever I run, it says to check my definition but the class is defined for all of my platfromschrisjenx
07/17/2024, 7:14 PMchrisjenx
07/17/2024, 7:16 PMexpect class VideoTrack {
abstract fun start()
abstract fun stop()
}
// android
actual class VideoTrack {
val impl = org.webrtc.VideoTrack()
override fun start() = impl.start()
override fun stop() = impl.stop()
}
hfhbd
07/17/2024, 10:27 PMhfhbd
07/17/2024, 10:28 PMhfhbd
07/17/2024, 10:29 PMchrisjenx
07/17/2024, 10:37 PMhfhbd
07/18/2024, 5:18 AM