android-sinch-api

Sinch Not Running in background no way (Android)

*爱你&永不变心* 提交于 2019-12-23 04:51:12
问题 Good day.I am using sinch for audio calling.I dont know what to do and there are no clear docs of sinch (which is very frastruating) which would give me any idea on how to keep the sinch client running in background to listen for incoming calls in the background while the app is killed.Meanwhile i reckon that i forced sinch client not to be terminated but every time the app is openning,the client is being started anyway.So if anyone encounter such thing,could you please help me and tell me

App to web video calling using Sinch

和自甴很熟 提交于 2019-12-13 03:52:12
问题 I am working on a project which is created as an application and as a website. This application includes app to app video calling as well as app to web video calling also. I have successfully implemented app to app calling, but how can i implement app to web calling. My project includes user1 and user2. User1 calls user2 on app. App to app calling is successful,but user2 can be logged in from website also, then in this case i have to accomplish a video call from app to web. Please help me by

Unable to get DICE event for App to Phone call in SINCH

十年热恋 提交于 2019-12-12 05:48:30
问题 I am developing an android application where I have used SINCH SDK for VOIP service. It is working too good as per our requirement. I have only one issue that I am unable to get DICE event on Callback URL (which is set at SINCH dashboard) or Call end event in mobile SDK when I perform app to phone call and recipient declines the call. I am able to get DICE event only if recipient pick ups the call and then disconnect it. Can anyone help? 来源: https://stackoverflow.com/questions/42434323/unable

Add clients to conference call in Sinch

纵饮孤独 提交于 2019-12-12 02:21:55
问题 I have implemented the Conference Call using Sinch and it is working perfectly. Now my requirement is I should be able to add clients to the conference call. According to the Sinch docs I can make users to connect to the same conference room only when all the users use the same conference room name. What I am trying to achieve is to have one user create a conference room and add users to that room as he wishes. Can this be achieved , if so how? All answers are appreciated 回答1: Yes you can use

SINCH :: Session Management for App to App Call

ぃ、小莉子 提交于 2019-12-11 06:26:28
问题 I am developing an app with SINCH Platform for VOIP feature. I am performing an app to app call . I am aware that if Callback URL of application Server is set on SINCH Dashboard then it will not trigger DICE (Disconnect Call Event callback) [refer here] event for App to App Call. But I have to manage all call details with my App Server. How Can I manage it from my Mobile App? (Like how can i notify my app server that last call was about of 50 seconds? So my server can manage relevant credit

Can not get Headers for sinch incoming call when application is in close state for the first time only

送分小仙女□ 提交于 2019-12-10 18:53:23
问题 I have following code in my SinchService. @Override public void onIncomingCall(CallClient callClient, Call call) { Log.d("Size", "Size : " + call.getHeaders().size()); Log.d(TAG, "onIncomingCall: " + call.getCallId()); Intent intent = new Intent(SinchService.this, IncomingCallScreenActivity.class); intent.putExtra(CALL_ID, call.getCallId()); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); SinchService.this.startActivity(intent); } In the first line i am printing Header size. I am getting

What is the Session period for SINCH Pin Verification?

安稳与你 提交于 2019-12-08 08:24:28
问题 We are developing an android and iOS app which requires number verification. I am doing it using SINCH Verification SDK. For my app, number verification is being done from Server side using REST API call using SINCH REST API . We are not sure what is the default time period (Session Time Period) for SINCH Pin verification . And how can i change it if i wish to change it? Can anyone help me finding out default SINCH Pin Verificaiton Seesion time? Thanks in advance. 来源: https://stackoverflow