callkit

Can we automate audio/video calls in native iOS devices?

时光毁灭记忆、已成空白 提交于 2020-07-20 06:26:29
问题 how to automate audio/video calls in iOS devices? How do caller get to know if callee has picked up the call or rejected? How to automate two devices at a time? Is it feasible to automate video/audio call in iOS devices? if yes can you please share the references? 回答1: Automating end-to-end scenarios is a challenging task. I would start with automating calls on one device and assert the network response with your server's APIs. Not really a StackOverflow question. Read these companies blogs

How to implement CallKit alike behaviour on Android with react native?

只愿长相守 提交于 2020-07-09 04:08:11
问题 I have an application written in react-native to handle Voip calls between users. I need to wakeup the app upon push notification and show a screen to accept/decline the call. On iOS there is callkit, is there anything similar for Android? 回答1: After some researches, I've come up with a solution which integrates some native Android code with the native app. First of all I've used WakefulBroadcastReceiver to wake up our activity process after receiving a push notification, then with a Service

Disabling Callkit from China Store Best Approach?

旧街凉风 提交于 2020-06-27 07:25:10
问题 We are using CallKit framework to benefit native usage for Voip features. Users can make Voice and Video Calls in our Messenger App. But Apple removing CallKit apps from China, because of Chinese government. What is the best approach for CallKit apps like us for now? We do not want to remove our app from China and we do not remove all CallKit functionality from our app because of China.. 回答1: I agree with txulu that it seems that CallKit just needs to be disabled/not used for users in China -

reason: 'Killing app because it never posted an incoming call to the system after receiving a PushKit VoIP push callback.'

故事扮演 提交于 2020-04-16 10:06:05
问题 I'm looking for solutions but I has find nothing yet. My app receives only VoIP pushes and after iOS 13 I'm not able to receive push when the app is in background mode anymore. I looked other questions but I was not able to solve my problem with solutions proposed. There's someone who can help me? On iOS 13.0 and later, incoming Voice over IP calls must be reported when they are received and before the didReceiceIncomingPush() method finishes execution, using the CallKit framework, or the

WebRTC iOS Audio Chat

*爱你&永不变心* 提交于 2020-03-22 08:09:11
问题 I am creating a voice only (no video) chat application. I have created my own node.js/socket.io based server for signaling. For WebRTC, I am using the following pod: https://cocoapods.org/pods/WebRTC I have been successful in creating peer connection, adding local stream, setting local/remote sdp, and send/receive ice candidates. The "didAddStream" delegate method is also called successfully having audio tracks but I am stuck here. I don't know what should I do with the audio track. What

iOS 13 Incoming Call UI goes to Recents

梦想与她 提交于 2020-02-28 08:02:52
问题 I'm developing VoIP based audio call in my application. I have a strange issue for which I couldn't find a solution. For iOS 13+ devices, sometimes incoming CallKit UI goes in Background. That means incoming CallKit UI doesn't show upfront, but I'm able to hear the call ringtone audio and vibration. When I double-tap on the Home button, I'm able to see my app with the IncomingCall UI in Recents. When I tap on it, it shows the CallKit UI and then I'm not able to move to other applications via

Can Callkit block all calls except whitelisted contacts?

久未见 提交于 2020-02-15 07:03:11
问题 Is it possible to create a whitelist call blocking app in iOS 11? For example, I want to block all numbers except those in my contacts list. It looks like the api only allows you to create a list of numbers to block, not a list of numbers to allow. https://developer.apple.com/documentation/callkit 回答1: Yes, you can only block specific list, you don't have permission to invert the case. This is against Apple's policy. Not sure if possible by using private apis, otherwise by public/legal way,

How to get the voip call log information in application - Call Kit

雨燕双飞 提交于 2020-01-19 17:18:25
问题 I have implemented call kit in my voip app in which i generate the call logs for incoming or outgoing calls (visible on phone recent tab). When i click on call logs it will open my app. I've overridden the UIApplication delegate method to get the handler. - (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity restorationHandler:(void (^)(NSArray *restorableObjects))restorationHandler But i unable to get call log related information in