Skip to content

voximplant/ios-sdk-releases

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 

Repository files navigation

Voximplant iOS SDK Swift PM

This repository provides the access to the Voximplant iOS SDK for Swift Package Manager.

Voximplant iOS SDK is distributed as a binary package (XCFramework) since 2.38.0.

Supported architectures:

  • iphoneos: arm64
  • iphonesimulator: x86_64, arm64

Add Voximplant to your app in Xcode

  1. Open your project in Xcode
  2. Go to Files > Swift Packages > Add Package Dependency
  3. Add this github repository ( .... )
  4. Select the SDK version

More information can be found in Apple Developer documentation

Add Voximplant to your package

To add Voximplant iOS SDK as a dependency of your package, declare it in dependencies section of your Package.swift

dependencies: [
    .package(url: "https://github.com/voximplant/ios-sdk-releases.git", .upToNextMinor(from: "2.54.0"))
]

Version notice

Voximplant iOS SDK version does not fully conform to semantic versioning.

Backward compatibility is only guaranteed for the patch version. API changes or a dependency update will increment the minor version.

Check the Voximplant iOS SDK changelog before selecting a version requirement. It is recommended to use exact or upToNextMinor requirements.