CreateBlogSupport
Log inSign up
Home
Webex Calling
  • Guides
  • Webex Calling Beta
  • Webex Cloud Calling
  • Broadworks Calling
  • UCM Calling
  • AI Assistant for Developers
  • Beta Program
  • Webex Status API

Webex Calling

Integrate the SDK

The easiest way to integrate the Webex iOS SDK into your app is by adding it to your project with CocoaPods.

Assuming you already have an Xcode project, for example, MyWebexApp, for your iOS app, here are the steps to integrate the Webex iOS SDK into your Xcode project using CocoaPods:

  1. Install CocoaPods:

    gem install cocoapods
    
  2. Setup CocoaPods:

    pod setup
    
  3. The Mobile iOS SDK is available in multiple flavors. If your use case involves only Webex Calling flows, consider using the size-optimized WebexSDK/Wxc SDK. For features beyond Webex Calling and for UCM calling, use the full SDK WebexSDK. Add the required library as a dependency in your app's Podfile. Create a new file named Podfile with the following content in your MyWebexApp project directory:

    source 'https://github.com/CocoaPods/Specs.git'
    
    • Full SDK : WebexSDK
    target 'WebexDemoApp' do
      platform :ios, '13.0'
      pod 'WebexSDK'
    end
    
    • Meeting SDK : WebexSDK
    target 'WebexDemoApp' do
      platform :ios, '13.0'
      pod 'WebexSDK/Meeting'
    end
    
    • WebexCalling SDK :WebexSDK/Wxc
    target 'WebexDemoApp' do
      platform :ios, '13.0'
      pod 'WebexSDK/Wxc'
    end
    
  4. Install the Webex iOS SDK from your MyWebexApp project directory:

    pod install
    
  5. In your app's Info.plist, add an entry named GroupIdentifier with the value set to your app's GroupIdentifier. This is necessary to obtain a path for storing the local data warehouse.

  6. Modify the Signing & Capabilities section in your xcode project as follows:

    Signing and capabilities

A sample app that implements this SDK, complete with source code, is available at https://github.com/webex/webex-ios-sdk-example.

This example demonstrates how to use the APIs and is not intended for production use.

    Connect

    Support

    Developer Community

    Developer Events

    Contact Sales

    Handy Links

    Webex Ambassadors

    Webex App Hub

    Resources

    Open Source Bot Starter Kits

    Download Webex

    DevNet Learning Labs

    Terms of Service

    Privacy Policy

    Cookie Policy

    Trademarks

    © 2025 Cisco and/or its affiliates. All rights reserved.