forked from firebase/FirebaseUI-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
53 lines (41 loc) · 976 Bytes
/
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
# Uncomment this line to define a global platform for your project
platform :ios, '8.0'
target 'FirebaseUI' do
use_frameworks!
pod 'Firebase'
pod 'Firebase/Database'
pod 'Firebase/Auth'
pod 'FBSDKLoginKit', '~> 4.0'
pod 'GoogleSignIn', '~> 4.0'
end
target 'FirebaseDatabaseUI' do
# Pods for Database
pod 'Firebase/Database'
target 'FirebaseDatabaseUITests' do
inherit! :search_paths
pod 'Firebase/Database'
end
end
target 'FirebaseAuthUI' do
# Pods for Auth
pod 'Firebase/Auth'
target 'FirebaseAuthUITests' do
inherit! :search_paths
end
end
target 'FirebaseFacebookAuthUI' do
# Pods for Facebook Auth
pod 'Firebase/Auth'
pod 'FBSDKLoginKit', '~> 4.0'
target 'FirebaseFacebookAuthUITests' do
inherit! :search_paths
end
end
target 'FirebaseGoogleAuthUI' do
# Pods for Google Auth
pod 'Firebase/Auth'
pod 'GoogleSignIn', '~> 4.0'
target 'FirebaseGoogleAuthUITests' do
inherit! :search_paths
end
end