aboutsummaryrefslogtreecommitdiffhomepage
path: root/AuthSamples/Podfile
blob: 473fefcd018fdef918789eee354c824dd45e28d5 (plain)
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
use_frameworks!
platform :ios, '8.0'

target 'Sample' do
  pod 'FirebaseDev/Auth', :path => '../'
  pod 'FBSDKLoginKit'
  pod 'GoogleSignIn'
  # Lock to the 1.0.9 version of InstanceID since 1.0.10 added a dependency
  # to FirebaseCore
  pod 'FirebaseInstanceID', '1.0.9'
end

target 'SwiftBear' do
  pod 'FirebaseDev/Auth', :path => '../'
  pod 'GoogleSignIn'
  pod 'FirebaseInstanceID', '1.0.9'
end

target 'ApiTests' do
  pod 'FirebaseDev/Auth', :path => '../'
  pod 'GoogleSignIn'
  pod 'FirebaseInstanceID', '1.0.9'
  pod 'GTMSessionFetcher'
end

target 'EarlGreyTests' do
  pod 'FirebaseDev/Auth', :path => '../'
  pod 'GoogleSignIn'
  pod 'FirebaseInstanceID', '1.0.9'
  pod 'EarlGrey'
end

target 'TestApp' do
  pod 'FirebaseDev/Auth', :path => '../'
end

target 'FirebaseAuthUnitTests' do
  pod 'FirebaseDev/Auth', :path => '../'
  pod 'OCMock'
end