iOS - Adapty SDK installation & configuration
Adapty SDK includes two key modules for seamless integration into your mobile app:
- Core Adapty: This essential SDK is required for Adapty to function properly in your app.
- AdaptyUI: This optional module is needed if you use the Adapty Paywall Builder, a user-friendly, no-code tool for easily creating cross-platform paywalls. These paywalls are built with a visual constructor right in our dashboard, run natively on the device, and require minimal effort to create high-performing designs.
If you’re using an older version of Adapty SDK and want to upgrade to version 3.x, we recommend following our Migration guide to Adapty SDK v.3.x or later.
You can install Adapty SDK via CocoaPods or Swift Package Manager.
Review the release checklist before launching your app
Before releasing your application, make sure to thoroughly review the Release Checklist. This checklist ensures that you've completed all necessary steps and provides criteria for evaluating the success of your integration.
- Adapty SDK v3.x+ (current)
- Adapty SDK up to v2.x (legacy)
Install Adapty SDK via Swift Package Manager
In Xcode, go to File -> Add Package Dependency.... Note that the steps to add package dependencies may vary between Xcode versions, so refer to Xcode documentation if needed.
- Enter the repository URL: https://github.com/adaptyteam/AdaptySDK-iOS.git.
- Select the version and click Add Package.
- Choose the modules you need:
- Adapty is the mandatory module.
- AdaptyUI is optional and needed if you plan to use the Adapty Paywall Builder.
- Xcode will add the package dependency to your project. To import it, in the Choose Package Products window, click the Add package button once again. The package will then appear in the Packages list.
Install SDKs via CocoaPods
-
Add Adapty to your
Podfile
. Choose the modules you need:- Adapty is the mandatory module.
- AdaptyUI is an optional module you need if you plan to use the Adapty Paywall Builder.
Podfilepod 'Adapty', '~> 3.2.0'
pod 'AdaptyUI', '~> 3.2.0' # optional module needed only for Paywall Builder -
Run:
Shellpod install
This will create a .xcworkspace
file for your app. Use this file for all future development.
Configure Adapty SDK
You only need to configure the Adapty SDK once, typically early in your app's lifecycle.
Activate Adapty module of Adapty SDK
- Swift
- SwiftUI
// In your AppDelegate class:
import Adapty
let configurationBuilder =
Adapty.Configuration
.Builder(withAPIKey: "PUBLIC_SDK_KEY")
.with(observerMode: false)
.with(customerUserId: "YOUR_USER_ID")
.with(idfaCollectionDisabled: false)
.with(ipAddressCollectionDisabled: false)
Adapty.activate(with: configurationBuilder) { error in
// handle the error
}
import Adapty
@main
struct SampleApp: App {
init()
let configurationBuilder =
Adapty.Configuration
.Builder(withAPIKey: "PUBLIC_SDK_KEY")
.with(observerMode: false) // optional
.with(customerUserId: "YOUR_USER_ID") // optional
.with(idfaCollectionDisabled: false) // optional
.with(ipAddressCollectionDisabled: false) // optional
Task {
try await Adapty.activate(with: configurationBuilder)
}
}
var body: some Scene {
WindowGroup {
ContentView()
}
}
}
Parameters:
Parameter | Presence | Description |
---|---|---|
PUBLIC_SDK_KEY | required | The key you can find in the Public SDK key field of your app settings in Adapty: App settings-> General tab -> API keys subsection |
observerMode | optional | A boolean value controlling Observer mode. Turn it on if you handle purchases and subscription status yourself and use Adapty for sending subscription events and analytics. The default value is 🚧 When running in Observer mode, Adapty SDK won't close any transactions, so make sure you're handling it. |
customerUserId | optional | An identifier of the user in your system. We send it in subscription and analytical events, to attribute events to the right profile. You can also find customers by customerUserId in the Profiles and Segments menu. |
idfaCollectionDisabled | optional | Set to the user IP address sharing. The default value is For more details on IDFA collection, refer to the Analytics integration section. |
ipAddressCollectionDisabled | optional | Set to The default value is |
- Note, that StoreKit 2 is available since iOS 15.0. Adapty will implement the legacy logic for older versions.
- Make sure you use the Public SDK key for Adapty initialization, the Secret key should be used for server-side API only.
- SDK keys are unique for every app, so if you have multiple apps make sure you choose the right one.
Remember that for paywalls and products to display in your app, and for analytics to function, you need to display the paywalls and, if you're not using the Paywall Builder, handle the purchase process within your app.
Activate AdaptyUI module of Adapty SDK
You need to configure the AdaptyUI module only if you plan to use Paywall Builder and have installed AdaptyUI module:
import AdaptyUI // Only if you are going to use AdaptyUI
// After calling Adapty.activate()
let adaptyUIConfiguration = AdaptyUI.Configuration(
mediaCacheConfiguration: .init(
memoryStorageTotalCostLimit: 100 * 1024 * 1024,
memoryStorageCountLimit: .max,
diskStorageSizeLimit: 100 * 1024 * 1024
)
)
try await AdaptyUI.activate(
configuration: adaptyUIConfiguration
)
Please note that AdaptyUI configuration is optional, you can activate AdaptyUI module without its config. However, if you use the config, all parameters are required in it.
Parameters:
Parameter | Presence | Description |
---|---|---|
memoryStorageTotalCostLimit | required | Total cost limit of the storage in bytes. |
memoryStorageCountLimit | required | The item count limit of the memory storage. |
diskStorageSizeLimit | required | The file size limit on disk of the storage in bytes. 0 means no limit. |
Please consult the compatibility table below to choose the correct pair of Adapty SDK and AdaptyUI SDK.
Adapty SDK version | AdaptyUI SDK version |
---|---|
2.7.x, 2.8.x | 2.0.x |
2.9.x - 2.10.0 | 2.1.2 |
2.10.1 | 2.1.3 |
2.10.3 and all later 2.10.x versions | 2.1.5 |
2.11.1 | 2.11.1 |
2.11.2 | 2.11.2 |
2.11.3 | 2.11.3 |
You can install AdaptySDK and AdaptyUI SDK via CocoaPods, or Swift Package Manager.
Go through release checklist before releasing your app
Before releasing your application, make sure to carefully review the Release Checklist thoroughly. This checklist ensures that you've completed all necessary steps and provides criteria for evaluating the success of your integration.
Install SDKs via CocoaPods
-
Add Adapty to your
Podfile
:Podfilepod 'Adapty', '~> 2.11.3'
pod 'AdaptyUI', '~> 2.11.3' -
Run:
Shellpod install
This creates a .xcworkspace
file for your app. Use this file for all future development of your application.
Install SDKs via Swift Package Manager
- In Xcode go to File -> Add Package Dependency.... Please note the way to add package dependencies can differ in XCode versions. Refer to XCode documentation if necessary.
- Enter the repository URL
https://github.com/adaptyteam/AdaptySDK-iOS.git
- Choose the version, and click the Add package button. Xcode will add the package dependency to your project, and you can import it.
- In the Choose Package Products window, click the Add package button once again. The package will appear in the Packages list.
- Repeat steps 2-3 for AdaptyUI SDK URL:
https://github.com/adaptyteam/AdaptyUI-iOS.git
.
Configure Adapty SDK
You only need to configure the Adapty SDK once, typically early in your application lifecycle:
- Swift
- SwiftUI
// In your AppDelegate class:
let configurationBuilder =
Adapty.Configuration
.Builder(withAPIKey: "PUBLIC_SDK_KEY")
.with(observerMode: false) // optional
.with(customerUserId: "YOUR_USER_ID") // optional
.with(idfaCollectionDisabled: false) // optional
.with(ipAddressCollectionDisabled: false) // optional
Adapty.activate(with: configurationBuilder) { error in
// handle the error
}
import Adapty
@main
struct SampleApp: App {
init()
let configurationBuilder =
Adapty.Configuration
.Builder(withAPIKey: "PUBLIC_SDK_KEY")
.with(observerMode: false) // optional
.with(customerUserId: "YOUR_USER_ID") // optional
.with(idfaCollectionDisabled: false) // optional
.with(ipAddressCollectionDisabled: false) // optional
.with(LogLevel: verbose) // optional
Adapty.activate(with: configurationBuilder) { error in
// handle the error
}
}
var body: some Scene {
WindowGroup {
ContentView()
}
}
}
Parameters:
Parameter | Presence | Description |
---|---|---|
PUBLIC_SDK_KEY | required | The key you can find in the Public SDK key field of your app settings in Adapty: App settings-> General tab -> API keys subsection |
observerMode | optional | A boolean value controlling Observer mode. Turn it on if you handle purchases and subscription status yourself and use Adapty for sending subscription events and analytics. The default value is 🚧 When running in Observer mode, Adapty SDK won't close any transactions, so make sure you're handling it. |
customerUserId | optional | An identifier of the user in your system. We send it in subscription and analytical events, to attribute events to the right profile. You can also find customers by customerUserId in the Profiles and Segments menu. |
idfaCollectionDisabled | optional | Set to the user IP address sharing. The default value is For more details on IDFA collection, refer to the Analytics integration section. |
ipAddressCollectionDisabled | optional | Set to The default value is |
LogLevel | optional | Adapty logs errors and other crucial information to provide insight into your app's functionality. There are the following available levels:
|
- Note, that StoreKit 2 is available since iOS 15.0. Adapty will implement the legacy logic for older versions.
- Make sure you use the Public SDK key for Adapty initialization, the Secret key should be used for server-side API only.
- SDK keys are unique for every app, so if you have multiple apps make sure you choose the right one.
Please keep in mind that for paywalls and products to be displayed in your mobile application, and for analytics to work, you need to display the paywalls and, if you're using paywalls not created with the Paywall Builder, handle the purchase process within your app.
Redirect the logging system messages
If you need to send Adapty's log messages to your system or save them to a file, you can add the desired behavior:
Adapty.setLogHandler { record in
writeToLocalFile("Adapty \(record.level): \(record.message)")
}