aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore
diff options
context:
space:
mode:
authorGravatar Gil <mcg@google.com>2018-05-15 13:39:49 -0700
committerGravatar GitHub <noreply@github.com>2018-05-15 13:39:49 -0700
commitc555778bcfd77a9644f65c00b2b2cf516f4f08d1 (patch)
tree2900ebe8b0cbce6dad0b80b2dec15b5b79a34eec /Firestore
parent959dd259c17f7e7b17a238526ac28e9431af3f51 (diff)
More macOS/static library prep (#1280)
* Avoid direct use of generated umbrella headers These: * don't exist in static library builds * have different names in multi-platform builds * Only iOS targets depend upon Firebase/Core
Diffstat (limited to 'Firestore')
-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>