I went to build my app and I got this error:
No architectures to compile for (ARCHS=arm64, VALID_ARCHS=armv6 armv7).
I dont understand what I am doing wrong, here are my architectures
Invalid bitcode signature
Armv6 is outdated, it hasn't been implemented since iOS 4.3
The standard recommended valid architectures are arm64, armv7 and armv7s. Here are a couple of apple technical documents that offer more detail.
Technical Q&A QA1910
iOS Device Compatibility Reference
Invalid bitcode signature- user979331