JitsiMeetSDK 9.2.1

JitsiMeetSDK 9.2.1

Maintained by saghul, Jitsi Mobile Team.



 
Depends on:
Giphy= 2.2.4
JitsiWebRTC~> 118.0
 

  • By
  • The Jitsi Meet project authors

Jitsi Meet iOS SDK releases

This repository contains the binaries for the Jitsi Meet iOS SDK. Each release is tagged in this repository and is composed of following framework:

  • JitsiMeetSDK.xcframework

Using the SDK

The recommended way for using the SDK is by using CocoaPods. In order to do so, add the JitsiMeetSDK dependency to your existing Podfile or create a new one following this example:

platform :ios, '12.0'

workspace 'JitsiMeetSDKTest.xcworkspace'

target 'JitsiMeetSDKTest' do
  project 'JitsiMeetSDKTest.xcodeproj'

  pod 'JitsiMeetSDK'
end

Replace JitsiMeetSDKTest with your project and target names.

Bitcode is not supported, so turn it off for your project.

The SDK uses Swift code, so make sure you select Always Embed Swift Standard Libraries in your project.

Since the SDK requests camera and microphone access, make sure to include the required entries for NSCameraUsageDescription and NSMicrophoneUsageDescription in your Info.plist file.

In order for app to properly work in the background, select the "audio" and "voip" background modes.

Last, since the SDK shows and hides the status bar based on the conference state, you may want to set UIViewControllerBasedStatusBarAppearance to NO in your Info.plist file.

API

The API is documented here.

Issues

Please report all issues related to this SDK to the Jitsi Meet repository.