SDK Integration
Requirements
- iOS 13.0+
- PowerAuth Mobile SDK needs to be available in your project
Swift Package Manager
Add https://github.com/wultra/mtoken-sdk-ios repository as a package in Xcode UI and add WultraMobileTokenSDK library as a dependency.
Alternatively, you can add the dependency manually. For example:
// swift-tools-version:5.7
import PackageDescription
let package = Package(
name: "YourLibrary",
platforms: [
.iOS(.v13)
],
products: [
.library(
name: "YourLibrary",
targets: ["YourLibrary"]
),
],
dependencies: [
// Replace VERSION_DEFINITION with the actual package version.
.package(url: "https://github.com/wultra/mtoken-sdk-ios.git", .from("VERSION_DEFINITION"))
],
targets: [
.target(
name: "YourLibrary",
dependencies: ["WultraMobileTokenSDK"]
)
]
)
Cocoapods
Add the following dependency to your Podfile:
pod 'WultraMobileTokenSDK'
Xcode Compatibility
We recommend using Xcode version 16.0 or newer.
Last updated on Aug 20, 2026 (20:22)
Edit on Github
Send Feedback