I experience the same error you describe DYLD 4 Symbol missing, I run Xcode 14.0.1 though.
When I run my app through Xcode on a device running iOS 15.7 (15.x in general), the app works fine. When I make a release through the app store, the app crashes on launch on that same device.
After updating the same device to iOS 16.x the app works fine when released through the App Store.
Post
Replies
Boosts
Views
Activity
Soon after I found the culprit. I received the same error as you.
It came from an imported library, where that library's "iOS Deployment Target" under Build Settings somehow was set to iOS 16.0, while all other libraries and the main project were set to iOS 11.0. Everything would compile normally, but the app would crash on any real device running 15.x and lower for release builds. Not sure why it still worked in the simulator or real device in debug build.
My solution: check all libraries used in your project whether their iOS Deployment Target is set to what you expect.