Skip to main content

ProCONF iOS SDK Integration in Sample iOS Swift App

To start using the Proconf_iOS_SDK xcframework in your iOS apps, following basic integration steps needs to be followed first.

Prerequisite

Step 1

Create Sample iOS project using swift, having minimum deployment target set to iOS version 14.5

Step 2: Install the dependencies:

Add following two frameworks to Frameworks, Libraries and Embedded Content section of your target-project

  • For release-build (to upload app on test-flight):
JitsiMeetSDK.xcframework - Embed without signing
Proconf_iOS_SDK.xcframework - Embed without signing
  • For debug-build (to run add on device for development testing):
JitsiMeetSDK.xcframework - Embed & signing
Proconf_iOS_SDK.xcframework - Embed & signing
  • Add following 2 pod files entries in client app's pod file and perform pod install operation:
# Pods for Client Sample App
pod 'JitsiWebRTC'
pod 'Giphy', '2.2.4'

With this setup Client App is now ready to integrate the proconf iOS SDK functionality.