forked from firebase/FirebaseUI-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
102 lines (82 loc) · 1.87 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
# Uncomment this line to define a global platform for your project
platform :ios, '8.0'
use_frameworks!
target 'FirebaseDatabaseUI' do
# Pods for Database
pod 'Firebase/Database'
target 'FirebaseDatabaseUITests' do
inherit! :search_paths
end
end
target 'FirebaseStorageUI' do
pod 'Firebase/Storage'
pod 'SDWebImage'
target 'FirebaseStorageUITests' do
inherit! :search_paths
pod 'OCMock'
end
end
target 'FirebaseAuthUI' do
# Pods for Auth
pod 'FirebaseAuth'
# Pod for FirebaseGoogleAuthUI (inlcuded to base so it's not duplicated)
pod 'GoogleSignIn', '~> 4.0'
target 'FirebaseAuthUITests' do
inherit! :search_paths
end
target 'FirebaseGoogleAuthUI' do
inherit! :search_paths
# Pods for Google Auth
# pod 'GoogleSignIn', '~> 4.0'
target 'FirebaseGoogleAuthUITests' do
inherit! :search_paths
pod 'OCMock'
end
end
target 'FirebaseFacebookAuthUI' do
inherit! :search_paths
# Pods for Facebook Auth
pod 'FBSDKLoginKit', '~> 4.0'
pod 'FBSDKCoreKit', '~> 4.0'
target 'FirebaseFacebookAuthUITests' do
inherit! :search_paths
pod 'OCMock'
end
end
target 'FirebaseTwitterAuthUI' do
inherit! :search_paths
# Pods for Twitter Auth
pod 'TwitterKit', '~> 2.4'
target 'FirebaseTwitterAuthUITests' do
inherit! :search_paths
pod 'OCMock'
end
end
end
target 'Database' do
# Pods for Database
pod 'Firebase/Database'
end
target 'Storage' do
pod 'Firebase/Storage'
pod 'SDWebImage'
end
target 'Auth' do
# Pods for Auth
pod 'Firebase/Auth'
end
target 'Facebook' do
# Pods for Facebook Auth
pod 'Firebase/Auth'
pod 'FBSDKLoginKit', '~> 4.0'
end
target 'Google' do
# Pods for Google Auth
pod 'Firebase/Auth'
pod 'GoogleSignIn', '~> 4.0'
end
target 'Twitter' do
# Pods for Twitter Auth
pod 'Firebase/Auth'
pod 'TwitterKit', '~> 2.4'
end