-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
31 lines (29 loc) · 915 Bytes
/
Package.swift
File metadata and controls
31 lines (29 loc) · 915 Bytes
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: ["ApMobileSDK"]
),
],
dependencies: [.package(url: "https://github.com/googleads/swift-package-manager-google-mobile-ads.git", from: "11.13.0")],
targets: [
.binaryTarget(
name: "ApMobileSDK",
url: "https://github.com/adpushup/ApiOSSDK/releases/download/1.0.6/ApMobileSDK.xcframework.zip",
checksum: "05eb7a24ef86afa299a375b9b64f276428741ddaba9ae3aed8691d4c367a6a0b"
),
.target(
name: "ApiOSSDK",
dependencies: [
.product(name: "GoogleMobileAds", package: "swift-package-manager-google-mobile-ads"),
"ApMobileSDK"
]
)
]
)