fix(ios): bump ion-ios-camera to 1.0.1 to fix iOS 15/16 crash on launch#46
Merged
andredestro merged 1 commit intomainfrom Apr 21, 2026
Merged
fix(ios): bump ion-ios-camera to 1.0.1 to fix iOS 15/16 crash on launch#46andredestro merged 1 commit intomainfrom
andredestro merged 1 commit intomainfrom
Conversation
OS-ruimoreiramendes
approved these changes
Apr 20, 2026
a011e2c to
a7df43c
Compare
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.
Description
Bump
ion-ios-cameraminimum version to1.0.1in both SPM and CocoaPods to pull in the iOS 15/16 crash fix.Context
Since iOS 17, Apple split SwiftUI into
SwiftUI.frameworkand a new private sub-frameworkSwiftUICore.framework. When building with the iOS 17+ SDK, the linker creates a hard dependency onSwiftUICorein the final binary — even when targeting iOS 15/16. On those devices,SwiftUICoredoesn't exist and the app crashes on launch withdyld: Library not loaded: SwiftUICore.The fix was implemented in
ion-ios-camera 1.0.1(see ionic-team/ion-ios-camera#14). This PR bumps the minimum version constraint so that all consumers are guaranteed to get the fixed version.Fixes: #44
Type of changes