aboutsummaryrefslogtreecommitdiffhomepage
path: root/Example/Podfile
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2017-09-20 18:19:56 -0700
committerGravatar GitHub <noreply@github.com>2017-09-20 18:19:56 -0700
commitd70ed06a14261fe6afec5ca8e045a56483a8ede8 (patch)
treed3a802405fa13af25fe589cb796eada77e97c680 /Example/Podfile
parentb52f30c083c665bb20b8a79b5bd3963026f827c5 (diff)
Update Auth samples to use latest InstanceID (#299)
Diffstat (limited to 'Example/Podfile')
-rw-r--r--Example/Podfile9
1 files changed, 4 insertions, 5 deletions
diff --git a/Example/Podfile b/Example/Podfile
index 9ec6ffd..64800f3 100644
--- a/Example/Podfile
+++ b/Example/Podfile
@@ -50,9 +50,8 @@ target 'Auth_Sample' do
pod 'FirebaseCommunity/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 'FirebaseInstanceID'
pod 'GTMSessionFetcher/Core'
end
@@ -60,14 +59,14 @@ target 'Auth_SwiftSample' do
platform :ios, '8.0'
pod 'FirebaseCommunity/Auth', :path => '../'
pod 'GoogleSignIn'
- pod 'FirebaseInstanceID', '1.0.9'
+ pod 'FirebaseInstanceID'
end
target 'Auth_ApiTests' do
platform :ios, '8.0'
pod 'FirebaseCommunity/Auth', :path => '../'
pod 'GoogleSignIn'
- pod 'FirebaseInstanceID', '1.0.9'
+ pod 'FirebaseInstanceID'
pod 'GTMSessionFetcher/Core'
end
@@ -75,7 +74,7 @@ target 'Auth_EarlGreyTests' do
platform :ios, '8.0'
pod 'FirebaseCommunity/Auth', :path => '../'
pod 'GoogleSignIn'
- pod 'FirebaseInstanceID', '1.0.9'
+ pod 'FirebaseInstanceID'
pod 'EarlGrey'
end