aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/Example/Podfile
diff options
context:
space:
mode:
Diffstat (limited to 'Firestore/Example/Podfile')
-rw-r--r--Firestore/Example/Podfile16
1 files changed, 11 insertions, 5 deletions
diff --git a/Firestore/Example/Podfile b/Firestore/Example/Podfile
index c5cf06a..923ab22 100644
--- a/Firestore/Example/Podfile
+++ b/Firestore/Example/Podfile
@@ -1,14 +1,20 @@
+# The next line is the forcing function for the Firebase pod. The Firebase
+# version's subspecs should depend on the component versions in their
+# corresponding podspec's.
+pod 'Firebase/Core', '4.6.0'
+
use_frameworks!
platform :ios, '8.0'
target 'Firestore_Example' do
- pod 'FirebaseCommunity/Core', :path => '../../'
- pod 'Firestore', :path => '../'
+ pod 'FirebaseAuth', :path => '../../'
+ pod 'FirebaseCore', :path => '../../'
+ pod 'FirebaseFirestore', :path => '../../'
target 'Firestore_Tests' do
inherit! :search_paths
- pod 'FirebaseCommunity/Core', :path => '../../'
+ pod 'FirebaseCore', :path => '../../'
pod 'leveldb-library'
pod 'OCMock'
@@ -18,12 +24,12 @@ target 'Firestore_Example' do
target 'Firestore_IntegrationTests' do
inherit! :search_paths
- pod 'FirebaseCommunity/Core', :path => '../../'
+ pod 'FirebaseCore', :path => '../../'
pod 'OCMock'
end
end
target 'SwiftBuildTest' do
- pod 'Firestore', :path => '../'
+ pod 'FirebaseFirestore', :path => '../../'
end