-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
117 lines (115 loc) · 3.52 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
// swift-tools-version: 5.7
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "AuthManager",
platforms: [
.iOS(.v13)
],
products: [
.library(
name: "BaseAuth",
targets: ["BaseAuth"]),
.library(
name: "CredentialAuth",
targets: ["CredentialAuth"]),
.library(
name: "CredentialAuthRx",
targets: ["CredentialAuthRx"]),
.library(
name: "FacebookAuth",
targets: ["FacebookAuth"]),
.library(
name: "FacebookAuthRx",
targets: ["FacebookAuthRx"]),
.library(
name: "GoogleAuth",
targets: ["GoogleAuth"]),
.library(
name: "GoogleAuthRx",
targets: ["GoogleAuthRx"]),
],
dependencies: [
.package(
url: "https://github.com/ReactiveX/RxSwift.git",
.upToNextMajor(from: "6.0.0")
),
.package(
url: "https://github.com/firebase/firebase-ios-sdk.git",
.upToNextMajor(from: "9.0.0")
),
.package(
url: "https://github.com/facebook/facebook-ios-sdk.git",
.upToNextMajor(from: "9.0.0")
),
.package(
url: "https://github.com/google/GoogleSignIn-iOS.git",
.upToNextMajor(from: "7.0.0")
)
],
targets: [
.target(
name: "BaseAuth",
dependencies: [],
path: "BaseAuth",
exclude: ["Package.swift", "Tests"]
),
.target(
name: "CredentialAuth",
dependencies: [
"BaseAuth"
],
path: "CredentialAuth",
exclude: ["Package.swift", "Tests"]
),
.target(
name: "CredentialAuthRx",
dependencies: [
"CredentialAuth",
.product(name: "RxSwift", package: "RxSwift"),
],
path: "CredentialAuthRx",
exclude: ["Package.swift", "Tests"]
),
.target(
name: "FacebookAuth",
dependencies: [
"BaseAuth",
.product(name: "FirebaseAuth", package: "firebase-ios-sdk"),
.product(name: "FacebookLogin", package: "facebook-ios-sdk"),
],
path: "FacebookAuth",
exclude: ["Package.swift", "Tests"]
),
.target(
name: "FacebookAuthRx",
dependencies: [
"FacebookAuth",
.product(name: "RxSwift", package: "RxSwift"),
],
path: "FacebookAuthRx",
exclude: ["Package.swift", "Tests"]
),
.target(
name: "GoogleAuth",
dependencies: [
"BaseAuth",
.product(name: "FirebaseAuth", package: "firebase-ios-sdk"),
.product(name: "GoogleSignIn", package: "GoogleSignIn-iOS"),
.product(name: "GoogleSignInSwift", package: "GoogleSignIn-iOS"),
],
path: "GoogleAuth",
exclude: ["Package.swift", "Tests"]
),
.target(
name: "GoogleAuthRx",
dependencies: [
"GoogleAuth",
.product(name: "RxSwift", package: "RxSwift"),
],
path: "GoogleAuthRx",
exclude: ["Package.swift", "Tests"]
),
],
swiftLanguageVersions: [.v5]
)