-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
31 lines (29 loc) · 940 Bytes
/
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
// swift-tools-version: 5.10
import PackageDescription
let package = Package(
name: "ApMobileSDK",
platforms: [
.iOS(.v14)
],
products: [
.library(
name: "ApiOSSDK",
targets: ["ApiOSSDK"]
),
],
dependencies: [.package(url: "https://github.com/googleads/swift-package-manager-google-mobile-ads.git", from: "11.0.0")],
targets: [
.binaryTarget(
name: "ApMobileSDK",
url: "https://github.com/adpushup/ApiOSSDK/releases/download/1.1.14/ApMobileSDK.xcframework.zip",
checksum: "cf370b395efca036408bb9f5b35495eef9e350ca41d7611a74e012415fa8f70d"
),
.target(
name: "ApiOSSDK",
dependencies: [.target(name: "ApMobileSDK"),
.product(name: "GoogleMobileAds", package: "swift-package-manager-google-mobile-ads")
],
path: "Sources/ApiOSSDK"
)
]
)