OAdSDK is an iOS SDK distributed as an XCFramework via Swift Package Manager.
- Xcode 16 and above
- iOS 16.0 and above
- Swift 6.0 and above
In Xcode, go to File > Add Package Dependencies... and enter the repository URL:
https://github.com/bucketplace/bucketplace-oads-sdk-ios
Or add it to your Package.swift:
dependencies: [
.package(url: "https://github.com/bucketplace/bucketplace-oads-sdk-ios", from: "1.0.0"),
],
targets: [
.target(
name: "YourTarget",
dependencies: [
.product(name: "OAdSDK", package: "bucketplace-oads-sdk-ios"),
]
),
]import OAdSDKTBD