I've been update my sdk sinch to 6.0.2 but i have a problem with the onIncomingCall function it is not replying whereby i can not receive video calls , i did it update base on documentation https://developers.sinch.com/docs/in-app-calling/getting-started/android/create-app/ , I have all the same construction
Note: I am working with Android-Kotlin , I show my main activity…
var serviceBinder: SinchService.SinchServiceBinder? = null private fun setSinchService(){ val user = SessionHelper.getUserId(this) serviceBinder?.start(user.toString()) } override fun onServiceConnected( componentName: ComponentName?, binder: IBinder?, ) { serviceBinder = binder as SinchService.SinchServiceBinder? serviceBinder?.setClientInitializationListener(this) setSinchService() serviceBinder?.addCallControllerListener(this) } override fun onStartedSuccessfully() { Log.d("Prueba-Conexion", "onStartedSuccessfully") } override fun onFailed(error: SinchError) { Log.e("Prueba-Conexion", "SinchClientInitializationListener error $error") }
My connection with my class SinchService to main activity is successfully
2023-03-28 15:01:24.805 15855-15855 Prueba-Conexion com...alsoftm.gs_app_express_dating D onStartedSuccessfully
I hope that your can help me
... View more