-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Import CoreExtension as a module #13967
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Generated by 🚫 Danger |
Apple API Diff ReportCommit: 440895f [BUILD ERROR] FirebaseFirestore |
How can I reproduce the module building issues on |
@ncooke3 See the repro instructions at #13756 with the following Podfile:
|
Closing in favor of the much simpler solution in #13993 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
api: abtesting
api: analytics
api: appcheck
api: appdistribution
api: auth
api: core
api: crashlytics
api: database
api: dynamiclinks
api: firestore
api: functions
api: inappmessaging
Firebase In App Messaging
api: installations
api: messaging
api: performance
api: remoteconfig
api: storage
api: vertexai
public-api-change
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
FirebaseCoreExtension
while building with Xcode 16 #13756 (comment)FirebaseCoreExtension
while building with Xcode 16 #13756There are numerous build problems related to the headers in FirebaseCoreExtension being referenced by FirebaseCore and other modules caused by the headers being included twice from the two different contexts.
This PR addressed that by moving headers and implementations from FirebaseCoreExtension and FirebaseCore to FirebaseCoreInternal (FirebaseCoreInternalObjC for SPM).
Since FIRAppInternal.h and FIRHeartbeatLogger.h are intertwined with FIRApp.m, it's feasible to move them without a bigger refactor. In order for FIRHeartbeatLogger.h to build correctly, it cannot declare an
enum
, so theheartbeatCodeForToday
API is converted to return an int.Since this is an internal breaking change, the CocoaPods major version for the FIrebaseCore* podspecs need a bump to 12. The break is because early Firebase 11 pods float the minor FirebaseCore* versions.
We may want to make the next Firebase major version be 13 instead of 12, so we can resync the versions again.
The CI failures are either flakes are pending publishing the binary Analytics to staging.