1. In your Xcode Project, select File > Swift Packages > Add Package Dependency.
2. Follow the prompts using the URL for this repository
3. Choose which version you would like to checkout(i.e. 1.64.6)
In order to use our CocoaPod, please follow the following instructions.
- Navigate to your project
- Run
pod init
- Run
open -a Xcode Podfile
- Edit the Podfile as indicated below
source 'https://github.com/cbajapan/fusion-live-assist-sdk'
target 'LiveAssistDemo' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for LiveAssistDemo
pod 'ACBClientSDK', '~> 3.4.6'
pod 'WebRTC', '~> 90.0.0'
pod 'AssistSDK', '~> 1.64.13'
end
- Close the Podfile
- Run
pod install
- You will now use the .xcworkspace instead of .xcodeproj as a project source.
NOTE: If you have trouble installing or updating the CocoaPod, you may have an issue with the local pod repo.
If that is the case, please try running the following Pod Commands
sudo rm -rf ~/.cocoapods/repos/cbajapan-fusion-live-assist-sdk
pod setup
pod install
Afterwards, you can run the install or update command again
pod install
Starting in LASDK version 1.64.10, we’ve switched to a dynamic framework, the import
mechanism needs to change. Please import the SDK accordingly.
@import AssistSDK;