Hi
I’m on Android and i want to send an offer with IceRestart.
I’m doing it this way, but it seems not working. The ice renegotiation not starting. why?
val constraints = MediaConstraints().apply {
mandatory.add(MediaConstraints.KeyValuePair("offerToReceiveAudio", connectionInfo.offerToReceiveAudio.toString()))
mandatory.add(MediaConstraints.KeyValuePair("offerToReceiveVideo", connectionInfo.offerToReceiveVideo.toString()))
optional.add(MediaConstraints.KeyValuePair("iceRestart", "true"))
optional.add(MediaConstraints.KeyValuePair("googCpuOveruseDetection", "false"))
}