Skip to content

Latest commit

 

History

History
45 lines (32 loc) · 754 Bytes

File metadata and controls

45 lines (32 loc) · 754 Bytes

OAdSDK

OAdSDK is an iOS SDK distributed as an XCFramework via Swift Package Manager.

Requirements

  • Xcode 16 and above
  • iOS 16.0 and above
  • Swift 6.0 and above

Installation

Swift Package Manager

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"),
        ]
    ),
]

Usage

import OAdSDK

License

TBD