Ok, so I found the answer (which worked for me) using some suggestions from this post
I really received another warning that I did not notice.
Pods was rejected as an implicit dependency for 'libPods.a' because its architectures 'armv7 armv7s' didn't contain all required architectures 'armv7 armv7s arm64'
In fact, this was due to the fact that the Pods target does not have the correct architectures. In the end, it turned out to be xCode error. For my Pods goal, I had all the correct architectures selected, armv7, armv7s and arm64.
DECISION:
Update cocoapods to the latest version supporting 64 arch.
sudo gem update cocoapods
Remove all valid architectures and clean up the project (which is not much.)
- Re-add the architectures you just removed and voilà!
anders
source share