-
Notifications
You must be signed in to change notification settings - Fork 32
/
Package.swift
53 lines (52 loc) · 1.46 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
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "MiniApp",
defaultLocalization: "en",
platforms: [
.iOS(.v14)
],
products: [
.library(name: "MiniApp", targets: ["MiniApp"])
],
dependencies: [
.package(
url: "https://github.com/weichsel/ZIPFoundation.git",
.upToNextMajor(from: "0.9.0")
),
.package(
url: "https://github.com/datatheorem/TrustKit.git",
.upToNextMajor(from: "2.0.0")
),
.package(
url: "https://github.com/stephencelis/SQLite.swift",
.upToNextMajor(from: "0.13.3")
),
.package(
name: "GoogleMobileAds-SPM",
url: "https://github.com/googleads/swift-package-manager-google-mobile-ads.git", .upToNextMajor(from: "10.0.0")
)
],
targets: [
.target(
name: "MiniApp",
dependencies: [
"ZIPFoundation",
"TrustKit",
.product(name: "GoogleMobileAds", package: "GoogleMobileAds-SPM"),
.product(name: "SQLite", package: "SQLite.swift")
],
path: "Sources/Classes/",
exclude: [
"admob7/AdMobDisplayer.swift"
],
resources: [
.process("resources"),
.process("js-miniapp")
]
)
],
swiftLanguageVersions: [
.v5
]
)