I am working with an android application, where I am implementing sinch sdk to enable voice/video feature to my app. Is there any way to send custom data with call. Below is my code for sending header with call. But I am receiving empty header on incoming call.
HashMap map = new HashMap(); map.put("appintment_key", "vikas"); Call call = getSinchServiceInterface().callUserVideo(userName,map);