This repository contains mediation adapters and event handlers for PrebidMobile iOS, split from the main PrebidMobile repository. Adapters extend PrebidMobile iOS SDK to integrate with mediation platforms and ad servers such as GAM, AdMob, and MAX.
- Open your project in Xcode.
- Go to File > Add Package Dependencies…
- Enter the repository URL:
https://github.com/prebid/prebid-mobile-ios-sdk - Select the version of the PrebidMobile Adapters SDK you want to use. For new projects, we recommend using the
Up to Next Major Version. - In the package selection screen, make sure to check only the adapter products you need for your integration and link it to your application target.
dependencies: [
.package(
url: "https://github.com/prebid/prebid-mobile-ios-adapters",
.upToNextMajor(from: "x.y.z")
)
]Add the product to your target:
.target(
name: "YourApp",
dependencies: [
.product(name: "PrebidMobileGAMEventHandlers", package: "prebid-mobile-ios-adapters"),
.product(name: "PrebidMobileAdMobAdapters", package: "prebid-mobile-ios-adapters")
]
)Please report issues in the main PrebidMobile repository.
Apache 2.0. See LICENSE.