I\'m getting this error
error: Invalid bitcode signature
clang: error: linker command failed with exit code 1 (use -v to see invocation)
For me it helped to "update project to recommended settings" and clean, credits to Rocksaurus: https://stackoverflow.com/a/47336130/1884907
Using pod deintegrate and pod install again resolved my problem. It might be helpful to other who have this question.
error: Invalid bitcode signature clang: error: linker command failed with exit code 1 (use -v to see invocation)
Note: If you are building for the target phone 9 or 10 the following solution solves the issue
Solution
Hope this solves the problem
If you have a static library (ends with .a), It's possible that its bitcode settings is not agreeing to your workspace / project.
I got the same error after doing a pod update
- restarting Xcode did the trick for me.
In my project I fixed this by setting all "Bitcode enabled" options to "No". That includes all targets and all projects in the workspace (main project, Cocoa Pod project).