File tree Expand file tree Collapse file tree 2 files changed +2
-22
lines changed Expand file tree Collapse file tree 2 files changed +2
-22
lines changed Original file line number Diff line number Diff line change 56
56
# required.
57
57
def configure_local_pods ( )
58
58
# Firestore is always local; that's what's under development here.
59
- pod 'FirebaseFirestore' , :path => '../../ '
59
+ pod 'FirebaseFirestore' , :path => '../..'
60
60
pod 'GoogleUtilities' , :path => '../..'
61
61
62
62
# FirebaseCore must always be a local pod so that CI builds that make changes
@@ -115,11 +115,6 @@ if is_platform(:ios)
115
115
target 'Firestore_Example_iOS' do
116
116
platform :ios , '8.0'
117
117
118
- # The next line is the forcing function for the Firebase pod. The Firebase
119
- # version's subspecs should depend on the component versions in their
120
- # corresponding podspecs.
121
- pod 'Firebase/CoreOnly' , '6.16.0'
122
-
123
118
configure_local_pods ( )
124
119
125
120
target 'Firestore_Tests_iOS' do
Original file line number Diff line number Diff line change 20
20
import Foundation
21
21
import XCTest
22
22
23
- // The Firebase pod is only available on iOS. On other platforms, import
24
- // Firestore directly and disable any tests that inspect types at the Firebase
25
- // level.
26
- #if os(iOS)
27
- import Firebase
28
- #else
29
- import FirebaseFirestore
30
- #endif
23
+ import FirebaseFirestore
31
24
32
25
class BasicCompileTests : XCTestCase {
33
26
func testCompiled( ) {
@@ -442,15 +435,7 @@ func types() {
442
435
let _: Firestore
443
436
let _: FirestoreSettings
444
437
let _: GeoPoint
445
- #if os(iOS)
446
- let _: Firebase . GeoPoint
447
- #endif
448
- let _: FirebaseFirestore . GeoPoint
449
438
let _: Timestamp
450
- #if os(iOS)
451
- let _: Firebase . Timestamp
452
- #endif
453
- let _: FirebaseFirestore . Timestamp
454
439
let _: ListenerRegistration
455
440
let _: Query
456
441
let _: QuerySnapshot
You can’t perform that action at this time.
0 commit comments