All Projects → sendbird → quickstart-calls-directcall-ios

sendbird / quickstart-calls-directcall-ios

Licence: MIT license
iOS sample for Direct Call of Sendbird Calls, guiding you to build a real-time voice and video calls quickly and easily.

Programming Languages

swift
15916 projects
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to quickstart-calls-directcall-ios

tgcalls
Voice chats, private incoming and outgoing calls in Telegram for Developers
Stars: ✭ 408 (+3038.46%)
Mutual labels:  voip, video-call, calls
awesome-rtc
📡 A curated list of awesome Real Time Communications resources
Stars: ✭ 196 (+1407.69%)
Mutual labels:  voip, rtc
Madelineproto
Async PHP client/server API for the telegram MTProto protocol
Stars: ✭ 1,776 (+13561.54%)
Mutual labels:  voip, calls
kvazzup
Open software for HEVC video calls
Stars: ✭ 30 (+130.77%)
Mutual labels:  voip, video-call
Linphone Iphone
Linphone is a free VoIP and video softphone based on the SIP protocol. Mirror of linphone-iphone (git://git.linphone.org/linphone-iphone.git)
Stars: ✭ 462 (+3453.85%)
Mutual labels:  call, voip
Linphone Android
Linphone.org mirror for linphone-android (https://gitlab.linphone.org/BC/public/linphone-android)
Stars: ✭ 740 (+5592.31%)
Mutual labels:  call, voip
Linphone Desktop
Linphone is a free VoIP and video softphone based on the SIP protocol. Mirror of git://git.linphone.org/linphone-desktop.git
Stars: ✭ 212 (+1530.77%)
Mutual labels:  call, voip
tvoip
Terminal-based P2P VoIP application (TeamSpeak-/Skype-like voice chatting over LAN or Internet)
Stars: ✭ 34 (+161.54%)
Mutual labels:  call, voip
in-app-payments-android-quickstart
In-App Payments Quick Start Sample Android App
Stars: ✭ 39 (+200%)
Mutual labels:  quickstart
dynamic-engine
Monitor events in the background on Android.
Stars: ✭ 24 (+84.62%)
Mutual labels:  call
create-material-ui-app
create-react-app + storybook + storybook-addon-material-ui
Stars: ✭ 55 (+323.08%)
Mutual labels:  quickstart
NeoPixel-60-Ring-Clock
Time displayed as a series of colored arcs on a 60 Ring NeoPixel
Stars: ✭ 15 (+15.38%)
Mutual labels:  rtc
matrix-pstn-bridge
☎️ A Matrix Puppet bridge for the public telephone network that supports a number of VoIP providers (Twillo, Vonage, etc.). Sends and receives voice and SMS.
Stars: ✭ 25 (+92.31%)
Mutual labels:  voip
jade
Asterisk based call center solution
Stars: ✭ 41 (+215.38%)
Mutual labels:  call
isotoxin
Isotoxin source
Stars: ✭ 69 (+430.77%)
Mutual labels:  video-call
typescript-on-browser-starter
Starter for TypeScript on Web Browser
Stars: ✭ 23 (+76.92%)
Mutual labels:  quickstart
fonoster
🚀 The open-source alternative to Twilio
Stars: ✭ 5,072 (+38915.38%)
Mutual labels:  voip
html-page-call-native
❤️ HTML5 call native app
Stars: ✭ 33 (+153.85%)
Mutual labels:  call
quickstart-docker-git
Boostrap projects with a Dockerfile and a folder structure that works.
Stars: ✭ 47 (+261.54%)
Mutual labels:  quickstart
human-call-filter
Captcha for phone calls
Stars: ✭ 41 (+215.38%)
Mutual labels:  voip

Sendbird Calls for iOS Quickstart

Platform Languages License: MIT

Download: AppStore

Introduction

Sendbird Calls SDK for iOS is used to initialize, configure, and build voice and video calling functionality into your iOS client app. In this repository, you will find the steps you need to take before implementing the Calls SDK into a project, and a sample app which contains the code for implementing voice and video call.

Note: You can only integrate one Sendbird application per app for your service regardless of the platforms. All users within your Sendbird application can communicate with each other across all platforms. This means that your iOS, Android, and web client app users can all make and receive calls with one another without any further setup. Note that all data is limited to the scope of a single application, and users in different Sendbird applications can't make and receive calls to each other.

More about Sendbird Calls for iOS

Find out more about Sendbird Calls for iOS on Calls for iOS doc. If you need any help in resolving any issues or have questions, visit our community.


Before getting started

This section shows you the prerequisites you need for testing Sendbird Calls for iOS sample app.

Requirements

The minimum requirements for Calls SDK for iOS sample are:

  • Mac OS with developer mode enabled
  • Xcode
  • Homebrew
  • At least one physical iOS device running iOS 9.0 and later
  • Swift 4.0 and later

Environment setup

Installing the Calls SDK is simple if you’re familiar with using external libraries or SDKs in your projects. After creating your Sendbird application from your dashboard, you can choose to install the Calls SDK using Swift Package Manager, CocoaPods or Carthage.

- Swift Package Manager

Go to your Swift Package Manager's File tab and select Swift Packages. Then choose Add package dependency.

Add the SendBirdCalls framework into your Package Repository with the following URL: https://github.com/sendbird/sendbird-calls-ios.

To add the package, select an appropriate dependency rule and click Add Package.

- CocoaPods

Open a terminal window. Navigate to the project directory, and then open the Podfile by running the following command:

$ open Podfile

Make sure that the Podfile includes the following:

platform :ios, '9.0'
 
target 'Project' do
    use_frameworks!
    
    pod 'SendBirdCalls'
end

Install the SendBirdCalls framework via CocoaPods.

$ pod install
- Carthage

You can also use Carthage to integrate the SendBirdCalls framework into your Xcode project.

  1. Install Carthage into your project by running brew install carthage in your project directory or choose any of other installation options.
  2. Create a Cartfile in the same directory where your .xcodeproj or .xcworkspace is.
  3. Add github “sendbird/sendbird-calls-ios” and github “sendbird/sendbird-webrtc-ios” dependencies to your Cartfile.
  4. Run carthage update.
  5. A Cartfile.resolved file and a Carthage directory will appear in the same directory where your .xcodeproj or .xcworkspace is.
  6. Drag the built .framework binaries from Carthage/Build/iOS into your application’s Xcode project.
  7. On your application targets’ Build Phases settings tab, click the + icon and choose New Run Script Phase. Create a Run Script in which you specify your shell (ex: /bin/sh), add the following contents to the script area below the shell: usr/local/bin/carthage copy-frameworks
  8. Add the paths to the frameworks you want to use under Input Files. For example:
$(SRCROOT)/Carthage/Build/iOS/SendBirdCalls.framework
$(SRCROOT)/Carthage/Build/iOS/WebRTC.framework
  1. Add the paths to the copied frameworks to the Output Files. For example:
$(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/SendBirdCalls.framework
$(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/WebRTC.framework
  1. For more information, refer to the Carthage’s guide.

Getting started

If you would like to try the sample app specifically fit to your usage, you can do so by following the steps below.

Create a Sendbird application

  1. Login or Sign-up for an account on Sendbird Dashboard.
  2. Create or select a call-activated application on the dashboard.
  3. Keep your Sendbird application ID in a safe place for future reference.

Create test users

  1. On the Sendbird dashboard, navigate to the Users menu.
  2. Create at least two new users: one as a caller, and the other as a callee.
  3. Note the user_id of each user for future reference.

Specify the Application ID

As shown below, the SendBirdCall instance must be initiated when a sample client app is launched. To initialize the sample with your Sendbird application, go to the Sendbird dashboard, create a Sendbird application, and then specify the APP_ID inside the sample app’s source code.

In the source code, find the application(_:didFinishLaunchingWithOptions:) method from AppDelegate.swift. Replace SAMPLE_APP_ID with APP_ID of your Sendbird application created earlier.

SendBirdCall.configure("SAMPLE_APP_ID")

Install and run the sample app

  1. Verify that Xcode is open on your Mac system and the sample app project is open.
  2. Plug the primary iOS device into the Mac running Xcode
  3. Unlock the iOS device
  4. Run the application by pressing the Run button or typing ⌘+R
  5. Open the newly installed app on the iOS device
  6. If two iOS devices are available, repeat these steps to install the sample app on each device.

Making your first call

Register push tokens

VoIP Push Notification enables receiving calls even when the app is in the background or in the terminated state.

To make and receive calls, authenticate the user with Sendbird server with the SendBirdCall.authenticate(with:) method and register a VoIP push token to Sendbird server.

You can register a VoIP push token (specific, the current user’s) by passing it as an argument to a parameter either in the authenticate() method during authentication, or in the SendBirdCall.registerVoIPPush(token:) method after completing the authentication.

Furthermore, a valid VoIP Services certificate or Apple Push Notification Service certificate also needs to be registered on the Sendbird Dashboard which you can do so on Add certificate under Application > Settings > Notifications.

More about certificates

For more details about generating certificates, refer to How to Generate a Certificate for VoIP Push Notification.

More about native-implementation

To handle a native-implementation of receiving incoming calls, implement Apple’s PushKit and CallKit frameworks. To implement the frameworks, register the push tokens associated with Sendbird Applications and handling of appropriate events. For more information, refer to Apple’s Voice Over IP (VoIP) Best Practices

How to make a call

  1. Log in to the sample app on the primary device with the user ID set as the caller.
  2. Log in to the sample app on the secondary device using the ID of the user set as the callee. Alternatively, you can also use the Calls widget found on the Calls dashboard to log in as the callee.
  3. On the primary device, specify the user ID of the callee and initiate a call.
  4. If all steps are followed correctly, an incoming call notification will appear on the device of the callee.
  5. Reverse the roles. Initiate a call from the other device.
  6. If the two testing devices are near each other, use headphones to make a call to prevent audio feedback.

Advanced

Remote push notifications

Instead of PushKit and CallKit, you can also choose to receive remote push notifications for incoming calls.

For a sample app with remote push notifications, refer to the feature/remote-push-notifications branch.

Handle an incoming call without media permission

When using CallKit to process your call, there may be times where a user makes a call without allowing media permission for audio and/or video access. Without such permission, the call will proceed without audio and/or video, which may not deliver the intended user experience. On the other hand, some other calling apps implement different user flow and require a media permission before starting a call.

Thus, you may face some issues regarding implementation because CallKit requires every VoIP Push Notifications to report a new incoming call instantaneously as specified on Apple's Documentation. When you face an issue related to this matter, refer to the following steps:

First, make sure that PushKit usage is in sync with the device's media permission state. If media permission is not allowed, destroy the existing push token to stop receiving VoIP Push and to ignore any incoming calls. Be sure to test your implementation and refer to Apple's guidelines on VoIP Push Notifications and CallKit.

Second, to ignore an incoming call if the media permission is not allowed and to prevent any future calls from being delivered to the device, on your AppDelegate's pushRegistry(_:didReceiveIncomingPushWith:for:completion:), add the following:

guard AVAudioSession.sharedInstance().recordPermission == .granted else { // Here, we check if the audio permission is granted
    // If it is not granted, we will destroy current push registration to stop receiving push notifications
    self.voipRegistry?.desiredPushTypes = nil
    
    // We will ignore current call and not present a new CallKit view. This will not cause crashes as we have destroyed current PushKit usage.
    completion()
    return
}

// Media permissions are granted, we will process the incoming call. 
SendBirdCall.pushRegistry(registry, didReceiveIncomingPushWith: payload, for: type) { uuid in
    ...

Third, if you would like to register VoIP Push Notification only if the media permission is allowed, on your AppDelegate's application(_:didFinishLaunchingWithOptions:), add the following:

if AVAudioSession.sharedInstance().recordPermission == .granted {
    self.voipRegistration()
}

Note: Destroying existing PKPushRegistry will prevent any future VoIP Push Notifications to be sent to the device. If you want to start receiving VoIP Push Notifications again, you must re-register PKPushRegistry by using self.voipRegistry?.desiredPushTypes = [.voIP].

Create a local video view before accepting an incoming call

You can create a current user's local video view and customize its appearance before accepting an incoming call. Follow the steps below to customize the current user’s local video view:

  1. Add a UIView to your storyboard.
  2. Create a view with the frame you want by using the SendBirdVideoView object.
  3. To add a subview, embed the SendBirdVideoView to the UIView from Step 1.
  4. Find an appropriate camera device by accessing the availableVideoDevice property of DirectCall.
  5. Start capturing video contents from the camera by calling the DirectCall.selectVideoDevice(_:completionHandler:) method.
@IBOutlet weak var localVideoView: UIView?

// Create SendBirdVideoView
let localSBVideoView = SendBirdVideoView(frame: self.localVideoView?.frame ?? CGRect.zero)

// Embed the SendBirdVideoView to UIView
self.localVideoView?.embed(localSBVideoView)

// Start rendering local video view
guard let frontCamera = (call.availableVideoDevice.first { $0.position == .front }) else { return }
call.selectVideoDevice(frontCamera) { (error) in
    // TODO: handle an error
}

Allow only one call at a time

Currently Sendbird Calls only supports a one-to-one call and the call waiting feature isn’t available yet. Using the SendBirdCall.getOngoingCallCount() method, you can retrieve the number of the current user’s ongoing calls and end a call if the call count has reached its limit.

if SendBirdCall.getOngoingCallCount() > 1 {
    call.end()
}

If you’re using Apple’s CallKit framework, you should use CXProviderConfiguration instead to set the allowed number of the current user’s ongoing calls as shown below:

let configuration = CXProviderConfiguration(localizedName: "Application Name")
configuration.maximumCallsPerCallGroup = 1
configuration.maximumCallGroups = 1
...

let provider = CXProvider(configuration: configuration)

Sound Effects

You can use different sound effects to enhance the user experience for events that take place while using Sendbird Calls.

To add sound effects, use the SendBirdCall.addDirectCallSound(_:forType:) method for the following events: dialing, ringing, reconnecting, and reconnected. Remember to set sound effects before the mentioned events occur. To remove sound effects, use the SendBirdCall.removeDirectCallSound(_:forType:) method.

// Play on a caller’s side when making a call.
SendBirdCall.addDirectCallSound("dialing.mp3", forType: .dialing)

// Play on a callee’s side when receiving a call.
SendBirdCall.addDirectCallSound("ringing.mp3", forType: .ringing)

// Play when a connection is lost, but the SDK immediately attempts to reconnect.
SendBirdCall.addDirectCallSound("reconnecting.mp3", forType: .reconnecting)

// Play when the connection is re-established.
SendBirdCall.addDirectCallSound("reconnected.mp3", forType: .reconnected)

If you’re using Apple’s CallKit framework, you should use CXProviderConfiguration.ringtoneSound instead to add sound effects as ringtones like the following:

let configuration = CXProviderConfiguration()
...
configuration.ringtoneSound = "ringing.mp3"

For more information about sound effects, see the SDK for iOS README for Sound effects.


Reference

For further detail on Sendbird Calls for iOS, refer to Sendbird Calls SDK for iOS README.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].