aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Firestore/Example/Podfile11
-rw-r--r--Firestore/Example/Tests/Util/FSTIntegrationTestCase.mm8
2 files changed, 12 insertions, 7 deletions
diff --git a/Firestore/Example/Podfile b/Firestore/Example/Podfile
index 5adb6b7..3f85c09 100644
--- a/Firestore/Example/Podfile
+++ b/Firestore/Example/Podfile
@@ -2,17 +2,16 @@
#source 'sso://cpdc-internal/spec'
#source 'https://github.com/CocoaPods/Specs.git'
-# 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', '5.0.0'
-
use_frameworks!
target 'Firestore_Example_iOS' do
platform :ios, '8.0'
+ # 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', '5.0.0'
+
pod 'FirebaseAuth', :path => '../../'
pod 'FirebaseCore', :path => '../../'
pod 'FirebaseFirestore', :path => '../../'
diff --git a/Firestore/Example/Tests/Util/FSTIntegrationTestCase.mm b/Firestore/Example/Tests/Util/FSTIntegrationTestCase.mm
index 1817015..434b77b 100644
--- a/Firestore/Example/Tests/Util/FSTIntegrationTestCase.mm
+++ b/Firestore/Example/Tests/Util/FSTIntegrationTestCase.mm
@@ -17,7 +17,13 @@
#import "Firestore/Example/Tests/Util/FSTIntegrationTestCase.h"
#import <FirebaseCore/FIRLogger.h>
-#import <FirebaseFirestore/FirebaseFirestore-umbrella.h>
+#import <FirebaseFirestore/FIRCollectionReference.h>
+#import <FirebaseFirestore/FIRDocumentChange.h>
+#import <FirebaseFirestore/FIRDocumentReference.h>
+#import <FirebaseFirestore/FIRDocumentSnapshot.h>
+#import <FirebaseFirestore/FIRFirestoreSettings.h>
+#import <FirebaseFirestore/FIRQuerySnapshot.h>
+#import <FirebaseFirestore/FIRSnapshotMetadata.h>
#import <GRPCClient/GRPCCall+ChannelArg.h>
#import <GRPCClient/GRPCCall+Tests.h>