iOS
Install Qonversion iOS SDK to implement in-app subscriptions, validate user receipts, get subscription analytics, and send subscription events to third-party integrations.
Install SDK
Qonversion supports Cocoapods, Carthage and Swift Package Manager to package your dependencies as a framework.
Install via Cocoapods
Add dependency to Podfile
.
pod 'Qonversion'
Run pod install
in the project directory to download the dependency.
pod install
Install via Carthage
To integrate SDK into your Xcode project using Carthage, specify it in your Cartfile:
github "qonversion/qonversion-ios-sdk"
After that, run the Carthage update to build the framework and drag the built Qonversion.framework into your Xcode project.
carthage update
Install via Apple Swift Package Manager
Open Xcode, go to File → App packages... and enter the package URL https://github.com/qonversion/qonversion-ios-sdk
to the search bar to import the package.
Qonversion Strict Mode SDK without IDFA collection
Qonversion Strict Mode iOS SDK does not collect IDFA. Developers can choose this SDK, for example, in the case of apps for kids. Following Apple's policy, apps in the kids category must not collect IDFA.
You can install the Strict Mode SDK with CocoaPods.
Add dependency to Podfile
.
pod 'Qonversion/NoIdfa'
Run pod install
in the project directory to download the dependency.
pod install
Updated about 1 month ago