aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/Example/Podfile
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2017-11-21 17:02:22 -0800
committerGravatar GitHub <noreply@github.com>2017-11-21 17:02:22 -0800
commit3e592526ec889887874efd0e46ba3cf72f2f6f98 (patch)
treede8cc73df387cd982ca9bbf517f8ff1a9c41cce3 /Firestore/Example/Podfile
parent32d6d6170fdca6f12a3fa51619081ad855815803 (diff)
Buildable and interoperable source pods (#444)
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