-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
58 lines (56 loc) · 1.86 KB
/
Package.swift
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// swift-tools-version:5.3
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "AppNexusSDK",
defaultLocalization: "en",
platforms: [
.iOS(.v12)
],
products: [
.library(
name: "AppNexusSDK",
targets: [
"OMSDK_Microsoft",
"AppNexusSDKTarget"
]
),
.library(
name: "ANGoogleAdapter",
targets: [
"ANGoogleMobileAdsTarget"
]
),
],
dependencies: [
.package(name: "GoogleMobileAds", url: "https://github.com/googleads/swift-package-manager-google-mobile-ads.git", .exact("11.2.0"))
],
targets: [
.binaryTarget(
name: "OMSDK_Microsoft",
url:
"https://adsdkprod.azureedge.net/mobile/ios/releases/9.2.0/dynamic/OMSDK_Microsoft.zip",
checksum: "f8adf064af0484964e309b3f333a48d9251574b5540c89ba8dd85f56f139fe47"
),
.binaryTarget(
name: "AppNexusSDKTarget",
url:
"https://adsdkprod.azureedge.net/mobile/ios/releases/9.2.0/dynamic/AppNexusSDKDynamic.zip",
checksum: "61e26492564b0d4b4da707e979bff59fd324d9c1513629dc59e3acfa5c89f3a2"
),
.target(
name: "ANGoogleMobileAdsTarget",
dependencies: [
.target(name: "ANGoogleMobileAds"),
.target(name: "AppNexusSDKTarget"),
.product(name: "GoogleMobileAds", package: "GoogleMobileAds")
],
path: "ANGoogleMobileAdsTarget"
),
.binaryTarget(
name: "ANGoogleMobileAds",
url: "https://adsdkprod.azureedge.net/mobile/ios/releases/9.2.0/static/ANGoogleAdapter.zip",
checksum: "1f72c4083cc021b80493ea90a0e5ba25491c231638976d6feb9e6bdc7a5cea5a"
)
]
)