Skip to content

iOS SDK - Installation

  • iOS 14.0+ / macOS 12.0+ / tvOS 14.0+ / watchOS 7.0+
  • Swift 5.9+
  • Xcode 15+

In Xcode, go to File > Add Package Dependencies… and enter:

https://github.com/FunnelMob/sdk-ios

Or add to your Package.swift:

dependencies: [
.package(url: "https://github.com/FunnelMob/sdk-ios", from: "0.1.0")
]

Then add FunnelMob to your target dependencies:

.target(
name: "MyApp",
dependencies: ["FunnelMob"]
)