File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed
FirebaseDatabase/Swift/Sources
FirebaseInAppMessaging/Swift/Source
ReleaseTooling/Sources/ZipBuilder Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 17
17
18
18
// This is a trick to force generate a `FirebaseDatabase-Swift.h`
19
19
// header that re-exports `FirebaseDatabaseInternal` for Objective-C
20
- // clients. It is important for the below code to reference a Remote
21
- // Config symbol defined in Objective-C as that will import the symbol's
20
+ // clients. It is important for the below code to reference a Database
21
+ // symbol defined in Objective-C as that will import the symbol's
22
22
// module (`FirebaseDatabaseInternal`) in the generated header. This
23
- // allows Objective-C clients to import Remote Config 's Objective-C API
23
+ // allows Objective-C clients to import Database 's Objective-C API
24
24
// using `@import FirebaseDatabase;`. This API is not needed for Swift
25
25
// clients and is therefore unavailable in a Swift context.
26
26
@available ( * , unavailable)
Original file line number Diff line number Diff line change 17
17
18
18
// This is a trick to force generate a `FirebaseInAppMessaging-Swift.h`
19
19
// header that re-exports `FirebaseInAppMessagingInternal` for Objective-C
20
- // clients. It is important for the below code to reference a Remote
21
- // Config symbol defined in Objective-C as that will import the symbol's
20
+ // clients. It is important for the below code to reference an In App
21
+ // Messaging symbol defined in Objective-C as that will import the symbol's
22
22
// module (`FirebaseInAppMessagingInternal`) in the generated header. This
23
- // allows Objective-C clients to import Remote Config 's Objective-C API
23
+ // allows Objective-C clients to import In App Messaging 's Objective-C API
24
24
// using `@import FirebaseInAppMessaging;`. This API is not needed for Swift
25
25
// clients and is therefore unavailable in a Swift context.
26
26
@available ( * , unavailable)
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
61
61
# FirebaseCore must always be a local pod so that CI builds that make changes
62
62
# to its podspec can still function. See Firestore-*-xcodebuild in
Original file line number Diff line number Diff line change 20
20
21
21
// This is a trick to force generate a `FirebaseFirestore-Swift.h`
22
22
// header that re-exports `FirebaseFirestoreInternal` for Objective-C
23
- // clients. It is important for the below code to reference a Remote
24
- // Config symbol defined in Objective-C as that will import the symbol's
23
+ // clients. It is important for the below code to reference a Firestore
24
+ // symbol defined in Objective-C as that will import the symbol's
25
25
// module (`FirebaseFirestoreInternal`) in the generated header. This
26
26
// allows Objective-C clients to import Firestore's Objective-C API
27
27
// using `@import FirebaseFirestore;`. This API is not needed for Swift
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ struct ModuleMapBuilder {
47
47
48
48
"""
49
49
50
- if module == " FirebaseFirestore " {
50
+ if module == " FirebaseFirestoreInternal " {
51
51
content += """
52
52
link framework " BoringSSL-GRPC "
53
53
link framework " gRPC-Core "
You can’t perform that action at this time.
0 commit comments