fix(app, expo): add missing Firebase imports - #9264
Merged
mikehardy merged 1 commit intoSep 1, 2026
Merged
Conversation
mikehardy
approved these changes
Aug 31, 2026
mikehardy
left a comment
Collaborator
There was a problem hiding this comment.
Hey @OskarEichler 👋
Thanks for the PR - this looks like a real problem to me. I ran local Jest/unit plus the android/ios/macos e2e suite against it here and it came out clean. Pending CI, then I'll merge.
Cheers
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## main #9264 +/- ##
============================================
- Coverage 68.50% 68.49% -0.01%
Complexity 1915 1915
============================================
Files 522 522
Lines 38116 38125 +9
Branches 5189 5191 +2
============================================
+ Hits 26108 26110 +2
- Misses 10222 10225 +3
- Partials 1786 1790 +4
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What this fixes
AppDelegate.h.Without the import, the plugin could add
[FIRApp configure]orFirebaseApp.configure()while leaving the generated native source uncompilable.Implementation
A shared import insertion helper now:
Verification
Regression tests reproduce both failures on upstream
mainand pass with this change. The complete repository gates also pass:yarn lerna:prepareyarn tests:jest --runInBand— 103 suites, 1,481 tests, 31 snapshotsyarn tsc:compileyarn tsc:compile:consumeryarn lint:depsyarn reference:apiyarn compare:typesgit diff --checkCompatibility
No public API or breaking changes.