In this documentation, we'll guide you through the process of installation. Let's get started on your journey to creating seamless communication experiences with JioMeet Core SDK!
You can install JioMeet Core SDK via Cocoapods.
Please add JioMeetCoreSDK_iOS
pod to your podfile and run pod install --repo-update
command.
target 'Your_App_Name' do
use_frameworks!
# Other Pods
pod 'JioMeetCoreSDK_iOS', '~> 4.0.5'
end
Note: Please add below post install script in podfile before installing pods
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'
end
end
end
Please add below permissions keys to your Info.plist
file with proper description.
<key>NSCameraUsageDescription</key>
<string>Allow access to camera for meetings</string>
<key>NSMicrophoneUsageDescription</key>
<string>Allow access to mic for meetings</string>
Please enable Background Modes
in your project Signing & Capibilities
tab. After enabling please check box with option Audio, Airplay, and Pictures in Pictures
. If you don't enables this setting, your mic will be muted when your app goes to background.