aboutsummaryrefslogtreecommitdiffhomepage
path: root/AuthSamples/Podfile
blob: b87ec7da98391504b234d7e6154a0a7c36e3719b (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
41
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'
  pod 'GTMSessionFetcher/Core'
end

target 'SwiftSample' 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/Core'
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