Swift Package Manager distribution for Appodeal's AppLovin MAX adapter.
Add this package dependency to your Package.swift:
dependencies: [
.package(url: "https://github.com/appodeal/Appodeal-Swift-Package-MAX.git", from: "1.0.0")
]Then add the product to your target:
targets: [
.target(
name: "YourApp",
dependencies: [
.product(name: "AppodealAppLovinMAXAdapter", package: "Appodeal-Swift-Package-MAX")
]
)
]- In Xcode, go to File → Add Package Dependencies
- Enter the repository URL:
https://github.com/appodeal/Appodeal-Swift-Package-MAX.git - Choose your version requirements (e.g., "Up to Next Major Version" from 1.0.0)
- Add the package to your project
- iOS 15.0+
- Xcode 15.0+
- Swift 5.9+
This package includes:
- Appodeal SDK (core)
- AppLovin SDK
- AppLovin MAX mediation adapters
After installation, the adapter will be automatically registered with Appodeal SDK. No additional configuration is required beyond the standard Appodeal initialization.
import Appodeal
// Initialize Appodeal with your app key
Appodeal.initialize(withApiKey: "YOUR_APP_KEY", types: .interstitial)The adapter version follows the format: X.Y.Z.R where:
X.Y.Z- AppLovin SDK versionR- Adapter revision
See LICENSE for details.
For issues related to:
- This Swift Package: Create an issue
- Appodeal SDK: Appodeal Support
- AppLovin SDK: AppLovin Support