Xcode 13 error builds
See original GitHub issueHello,
I noticed my Xcode updated to 13
And right after that I started getting this error at build:
I run pod update
Downloading dependencies
Installing MultiplatformBleAdapter 0.1.7 (was 0.1.6)
Installing react-native-ble-plx 2.0.2 (was 2.0.1)
Generating Pods project
Integrating client project
Pod installation complete! There are 81 dependencies from the Podfile and 71 total pods installed.
But same error
Any guess?
Issue Analytics
- State:
- Created 2 years ago
- Reactions:20
- Comments:20 (2 by maintainers)
Top Results From Across the Web
Xcode 13 beta | Failed to build mo… | Apple Developer Forums
My problem exists only when I run xcodebuild from the command line. Toolchain and xcode version is set correctly to beta. Are there...
Read more >IOS build errors - Xcode 13 - Stack Overflow
Below are errors while building in latest xcode 13 & Mac Apple Pro M1 chip <unknown>:0: error: module map file ...
Read more >How to fix the error "The developer of this app needs to update ...
As a security measure, iOS refuses to launch an application with a missing or invalid signature. The signature generated by a build with...
Read more >Oh dear! Build errors? - LoopDocs - GitHub Pages
Solution: Go to your Xcode -> Preferences (or Settings) and under the Locations tab, select your Xcode version (the figure shows 14.0.1 -...
Read more >Build error with XCode 13 - MBIENTLAB
Hey all, Since the release of xcode 13 there has been a build error in the DFU library. Any news on a fix?...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
patch-package
-npm i patch-package --save-dev
patches/react-native-ble-plx+2.0.2.patch
yarn patch-package
to your “postinstall” script in yourpackage.json
This points to a fork that @below released while we wait
More info in https://www.npmjs.com/package/patch-package, but basically you make whatever changes you need under
node_modules
then runnpx patch-package <package you edited>
. This generates a diff which then is expressed whenever you run yarn install. In this case, you just need to upgrade whatMultiplatformBleAdapter
cocoapod thereact-native-ble-plx
points to, from 0.1.7 to 0.1.9. 0.1.9 works with XCode 13, 0.1.7 doesn’tThis has been fixed with the 2.0.3 release. You can close this issue.