-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
35 lines (33 loc) · 1.38 KB
/
Copy pathPackage.swift
File metadata and controls
35 lines (33 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// swift-tools-version: 5.6
// The swift-tools-version declares the minimum version of Swift required to build this package.
// Copyright © 2026 AppLovin. All rights reserved.
import PackageDescription
let package = Package(
name: "AppLovinMediationSmaatoAdapter",
platforms: [.iOS(.v13)],
products: [
.library(
name: "AppLovinMediationSmaatoAdapter",
targets: ["AppLovinMediationSmaatoAdapterTarget"]),
],
dependencies: [
.package(url: "https://github.com/AppLovin/AppLovin-MAX-Swift-Package.git", from: "13.0.0"),
.package(url: "https://github.com/vervegroup/Smaato-ios-sdk-standalone.git", exact: "23.1.0")
],
targets: [
.target(
name: "AppLovinMediationSmaatoAdapterTarget",
dependencies: [
.target(name: "AppLovinMediationSmaatoAdapter"),
.product(name: "AppLovinSDK", package: "AppLovin-MAX-Swift-Package"),
.product(name: "SmaatoSDK", package: "Smaato-ios-sdk-standalone"),
],
path: "Sources"
),
.binaryTarget(
name: "AppLovinMediationSmaatoAdapter",
url: "https://artifacts.applovin.com/ios/com/applovin/mediation/smaato-adapter/AppLovinMediationSmaatoAdapter-23.1.0.0.zip",
checksum: "aea615be876691fa06dc547a25408b53994fbb31a8ead6d64ac58128496c0a58"
)
]
)