forked from firebase/FirebaseUI-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
168 lines (129 loc) · 2.72 KB
/
Podfile
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
# Uncomment this line to define a global platform for your project
platform :ios, '8.0'
target 'FirebaseDatabaseUI' do
use_frameworks!
# Pods for Database
pod 'Firebase/Database'
target 'FirebaseDatabaseUITests' do
inherit! :search_paths
end
end
target 'FirebaseStorageUI' do
use_frameworks!
pod 'Firebase/Storage'
pod 'SDWebImage', '~> 4.0'
target 'FirebaseStorageUITests' do
inherit! :search_paths
pod 'SDWebImage', '~> 4.0'
pod 'OCMock'
end
end
target 'FirebaseAuthUI' do
use_frameworks!
# Pods for Auth
pod 'FirebaseAuth'
target 'FirebaseAuthUITests' do
inherit! :search_paths
pod 'OCMock'
end
end
target 'FirebaseFacebookAuthUI' do
use_frameworks!
# Pods for Facebook Auth
pod 'FBSDKLoginKit', '~> 4.0'
pod 'FBSDKCoreKit', '~> 4.0'
target 'FirebaseFacebookAuthUITests' do
inherit! :search_paths
pod 'OCMock'
pod 'FBSDKLoginKit', '~> 4.0'
pod 'FBSDKCoreKit', '~> 4.0'
end
end
target 'FirebaseGoogleAuthUI' do
use_frameworks!
# Pods for Google Auth
pod 'GoogleSignIn', '~> 4.0'
target 'FirebaseGoogleAuthUITests' do
inherit! :search_paths
pod 'OCMock'
end
end
target 'FirebasePhoneAuthUI' do
use_frameworks!
target 'FirebasePhoneAuthUITests' do
inherit! :search_paths
pod 'OCMock'
end
end
target 'FirebaseTwitterAuthUI' do
platform :ios, '9.0'
use_frameworks!
# Pods for Twitter Auth
pod 'TwitterKit', '~> 3.0'
target 'FirebaseTwitterAuthUITests' do
platform :ios, '9.0'
inherit! :search_paths
pod 'OCMock'
end
end
target 'FirebaseFirestoreUI' do
use_frameworks!
# Pods for Firestore
pod 'Firebase/Firestore'
target 'FirebaseFirestoreUITests' do
inherit! :search_paths
end
end
target 'Database' do
use_frameworks!
# Pods for Database
pod 'Firebase/Database'
end
target 'Storage' do
use_frameworks!
pod 'Firebase/Storage'
pod 'SDWebImage', '~> 4.0'
end
target 'Auth' do
use_frameworks!
# Pods for Auth
pod 'FirebaseAuth'
end
target 'Facebook' do
use_frameworks!
# Pods for Facebook Auth
pod 'FirebaseAuth'
pod 'FBSDKLoginKit', '~> 4.0'
end
target 'Google' do
use_frameworks!
# Pods for Google Auth
pod 'FirebaseAuth'
pod 'GoogleSignIn', '~> 4.0'
end
target 'Phone' do
use_frameworks!
# Pods for Phone Auth
pod 'FirebaseAuth'
end
target 'Twitter' do
platform :ios, '9.0'
use_frameworks!
# Pods for Twitter Auth
pod 'FirebaseAuth'
pod 'TwitterCore', '~> 3.0'
pod 'TwitterKit', '~> 3.0'
end
target 'Firestore' do
platform :ios, '9.0'
use_frameworks!
pod 'Firebase/Firestore'
end
target 'FirebaseUISample' do
use_frameworks!
platform :ios, '9.0'
pod 'OCMock'
target 'FirebaseUISampleUITests' do
inherit! :search_paths
end
end