-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
116 lines (92 loc) · 2.3 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
# 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
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 'FirebaseGoogleAuthUI' do
inherit! :search_paths
# Pods for Google Auth
pod 'GoogleSignIn', '~> 4.0'
target 'FirebaseGoogleAuthUITests' do
inherit! :search_paths
pod 'OCMock'
end
end
target 'FirebasePhoneAuthUI' do
inherit! :search_paths
target 'FirebasePhoneAuthUITests' do
inherit! :search_paths
pod 'OCMock'
end
end
target 'FirebaseTwitterAuthUI' do
platform :ios, '9.0'
inherit! :search_paths
# Pods for Twitter Auth
pod 'TwitterKit', '~> 3.0'
target 'FirebaseTwitterAuthUITests' do
platform :ios, '9.0'
inherit! :search_paths
pod 'OCMock'
end
end
end
target 'FirebaseFirestoreUI' do
use_frameworks!
# Pods for Firestore
pod 'Firebase/Firestore'
target 'FirebaseFirestoreUITests' do
inherit! :search_paths
end
end
target 'FirebaseUISample' do
use_frameworks!
platform :ios, '9.0'
pod 'OCMock'
# pod 'FirebaseUI/Auth', :path => '.'
# pod 'FirebaseUI/Facebook', :path => '.'
# pod 'FirebaseUI/Google', :path => '.'
# pod 'FirebaseUI/Twitter', :path => '.'
# pod 'FirebaseUI/Phone', :path => '.'
target 'FirebaseUISampleUITests' do
inherit! :search_paths
end
end
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
config.build_settings.delete('CODE_SIGNING_ALLOWED')
config.build_settings.delete('CODE_SIGNING_REQUIRED')
end
end