Undefined symbols for architecture x86_64 build error. IOS
See original GitHub issueI am unable to build my project after added this package. I get the the following error:
Undefined symbols for architecture x86_64 build
I have a full explanation of the problem on Stackoverflow including with what i have tried without any luck. I hope someone here has ran into the same problem and has found a solution or can point me in the right direction.
Issue Analytics
- State:
- Created 10 months ago
- Comments:9
Top Results From Across the Web
Xcode build failure "Undefined symbols for architecture x86_64"
This generally means, you are calling "xxx" (it may be a framework or class) from the class "yyy". The compiler can not locate...
Read more >Undefined symbols for architecture x86_64 - Apple Developer
I'm trying to create an application that sends keystrokes to another process and I keep getting this error: Undefined symbols for architecture x86_64:....
Read more >Undefined symbols for architecture x86_64 Xcode 12 #213
build phase 2. Try to compile to the simulator 3. Get error Undefined symbols for architecture x86_64: "_OBJC_CLASS_$_FlurryWatch", ...
Read more >Fixing React Native build error: Undefined symbols ... - Medium
While running yarn ios for React Native v0.64.2 on my mac machine (macOS 11.6, XCode 13) i've encountered following error: Undefined symbols ......
Read more >React Native Firebase Analytics: Undefined symbols for ...
When I tried to build the project with expo run:ios , I got the following error. ❌ Undefined symbols for architecture x86_64 ┌─...
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 Free
Top 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
After
pod install
add this through xcode to your Pods projectFor anyone still experiencing this issue i solved it thanks to the image of @Maorshl. In my case setting the excluded Architectures in my
.xcworkspace
file for pods was the issue. Because by default the setting was only targetingboost
under the Targets tab. After changing it toPods
under the Project tab i managed to build for the simulator.I feel incredibly stupid for not realising this after two weeks of pain…
@CodingByJerez if you also tried the above solution without any luck maybe create a new project and copy the source code over. (i did this approach and with the hep of what i mentioned above i got it all to work)
Hopefully this helps anyone in the future.