-
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) · 945 Bytes
/
Package.swift
File metadata and controls
31 lines (29 loc) · 945 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: "ApTestLibrary",
platforms: [
.iOS(.v14)
],
products: [
.library(
name: "ApTestLib",
targets: ["ApTestLib"]
),
],
dependencies: [.package(url: "https://github.com/googleads/swift-package-manager-google-mobile-ads.git", from: "11.0.0")],
targets: [
.binaryTarget(
name: "TestLibrary",
url: "https://github.com/rishh18/ApTestLib/releases/download/1.0.6/TestLibrary.xcframework.zip",
checksum: "4ad09c457b74b48fd27c07bdb97e5f41928823f8e440aee22143477695fdfcc4"
),
.target(
name: "ApTestLib",
dependencies: [.target(name: "TestLibrary"),
.product(name: "GoogleMobileAds", package: "swift-package-manager-google-mobile-ads")
],
path: "Sources/ApTestLib"
)
]
)