forked from firebase/FirebaseUI-iOS
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPodfile
More file actions
138 lines (110 loc) · 2.87 KB
/
Podfile
File metadata and controls
138 lines (110 loc) · 2.87 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
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
# 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 'FirebaseAnonymousAuthUI' do
inherit! :search_paths
target 'FirebaseAnonymousAuthUITests' do
inherit! :search_paths
pod 'OCMock'
end
end
target 'FirebaseEmailAuthUI' do
inherit! :search_paths
target 'FirebaseEmailAuthUITests' do
inherit! :search_paths
pod 'OCMock'
end
end
target 'FirebaseFacebookAuthUI' do
inherit! :search_paths
# Pods for Facebook Auth
# These are pinned to 4.35.0 to work around this bug:
# https://developers.facebook.com/support/bugs/242258916492125/?disable_redirect=0
pod 'FBSDKLoginKit', '= 4.35.0'
pod 'FBSDKCoreKit', '= 4.35.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/Anonymous', :path => '.'
# pod 'FirebaseUI/Auth', :path => '.'
# pod 'FirebaseUI/Email', :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