Updating the SDK
Update the Luciq iOS SDK to the latest or a pinned version, with instructions for Swift Package Manager in Xcode, CocoaPods, and Carthage.
You can easily update the Luciq SDK for each platform by following the instructions outlined below. If you wish to update to a specific version (for example, 19.6.0), ensure that your configuration files (Package.swift,Cartfile or Podfile) reflect this version accordingly.
Swift Package Manager (SPM)
Updating via Xcode Interface:
Open your project in Xcode.
In the Project Navigator, scroll to the Package Dependencies group at the bottom and expand it.
Right-click luciq → Update Package.
Updating via Command Line
To Update to the Latest Compatible Version:
In your Package.swift, add:
.package(url: "https://github.com/luciqai/luciq-ios-sdk", from: "19.6.0")Then, run:
swift package updateTo Update to a Specific Version (e.g., 19.6.0):
In your Package.swift, specify:
.package(url: "https://github.com/luciqai/luciq-ios-sdk", .exact("19.6.0"))Finally, execute:
CocoaPods
CocoaPods registry goes read-only on Dec 2, 2026, you will not receive updates, fixes, or new features. Existing projects can follow the Migrating from CocoaPods to SPM guide
To update to the latest version of Luciq, use the following command:
If you need to update to a specific version (e.g., 19.6.0), specify it in your Podfile like this:
After making the change, run:
Carthage
To update to the latest version of Luciq, execute:
For a specific version, indicate it in your Cartfile as follows:
Then, run:
Last updated