This repository contains the PrebidMobile iOS SDK, split from the main PrebidMobile repository.
The PrebidMobile iOS SDK package provides the fundamental PrebidMobile functionality required to build header bidding and demand integrations on iOS.
- 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 iOS 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 the modules you need for your integration and link it to your application target.
dependencies: [
.package(
url: "https://github.com/prebid/prebid-mobile-ios-sdk",
.upToNextMajor(from: "x.y.z")
)
]Add the product to your target:
.target(
name: "YourApp",
dependencies: [
.product(name: "PrebidMobile", package: "prebid-mobile-ios-sdk")
]
)Please report issues in the main PrebidMobile repository.
Apache 2.0. See LICENSE.