Link Search Menu Expand Document

Update SDK to Latest Version

Table of contents


Steps to successful update:

  • Clear pods from you project.
cd PROJECT_FILE
pod deintegrate
  • Make sure under Podfile deployment target set to 10.0 and above.
platform :ios, '10.0'
  • Validate that relevant source is mantioned on Podfile.
source 'https://github.com/genesys/Bold360ai-SDK-Specs'
  • Validate the SDK name is written properly.
pod 'Bold360AI'
  • Run the update command.
pod update # not pod install

Right Podfile Example

platform :ios, "10.0"
use_frameworks!

install! 'cocoapods',
         :deterministic_uuids => false

source 'https://github.com/genesys/Bold360ai-SDK-Specs'
source 'https://github.com/CocoaPods/Specs'

target 'PROJECT_NAME' do
     pod 'Bold360AI'
end