-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
66 lines (64 loc) · 2.18 KB
/
Package.swift
File metadata and controls
66 lines (64 loc) · 2.18 KB
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
59
60
61
62
63
64
65
66
// swift-tools-version: 5.10
import PackageDescription
let package = Package(
name: "AmeenSDK",
platforms: [
.iOS(.v17) // Set the minimum supported iOS version to 16.0
],
products: [
.library(
name: "AmeenSDK",
targets: ["AmeenSDK"]
),
.library(
name: "AmeenUI",
targets: ["AmeenUI"]
),
],
dependencies: [
.package(url: "https://github.com/elai950/AlertToast.git", .upToNextMajor(from: "1.0.0")),
.package(url: "https://github.com/SwiftUIX/SwiftUIX", .upToNextMajor(from: "0.1.5")),
.package(url: "https://github.com/MessageKit/MessageKit", .upToNextMajor(from: "4.2.0")),
.package(url: "https://github.com/simibac/ConfettiSwiftUI", .upToNextMajor(from: "1.1.0")),
.package(url: "https://github.com/MaximeFILIPPI/SnapPagerCarousel", .branch("main")),
.package(url: "https://github.com/onevcat/Kingfisher.git", .upToNextMajor(from: "8.6.0")),
.package(url: "https://github.com/Alamofire/Alamofire.git", .upToNextMajor(from: "5.10.0")),
.package(url: "https://github.com/firebase/firebase-ios-sdk", .upToNextMajor(from: "11.5.0"))
],
targets: [
.target(
name: "AmeenSDK",
dependencies: [
"AlertToast",
"SwiftUIX",
"MessageKit",
"ConfettiSwiftUI",
"SnapPagerCarousel",
"Kingfisher",
"Alamofire",
.product(name: "FirebaseAuth", package: "firebase-ios-sdk"),
.product(name: "FirebaseCore", package: "firebase-ios-sdk")
]
),
.target(
name: "AmeenUI",
dependencies: [
"AlertToast",
"SwiftUIX",
"ConfettiSwiftUI",
"Kingfisher",
],
resources: [
.process("Fonts")
]
),
.testTarget(
name: "AmeenSDKTests",
dependencies: ["AmeenSDK"]
),
.testTarget(
name: "AmeenUITests",
dependencies: ["AmeenUI"]
)
]
)