Xcode 14 started signing external pods, which breaks builds on React Native versions below 0.70.3 with errors like Signing for "React-Core-AccessibilityResources" requires a development team. Upgrading React Native is the right long-term fix, but it can be a daunting migration on a stuck-on-old-version app.
The full post shows a Podfile post-install workaround that disables code signing for the React-Core resource bundles via xcconfig overrides — CODE_SIGNING_ALLOWED = NO and CODE_SIGN_STYLE = Manual. A useful escape hatch when you need a green build today, with the caveat that some teams have reported App Review pushback after using it.
Originally published at andreasbergstrom.dev — read the full post there.
Top comments (0)