Cocoapods Error with Xcode 5.1

I upgraded Xcode to version 5.1, and when I try to create my project, I get the following error:

Pods was rejected as an implicit dependency for "libPods.a" because its "armv7s" of its architectures did not contain all arch7 armv7s of all necessary architectures

Any solution? I tried updating gem cocoapods without success.

+4
source share
1 answer

This should fix the problem:

1. Remove the "Pods" project from the workspace in the left Xcode pane and close Xcode.

2. Run "pod install" from the command line to recreate the "Pods" project.

3.Re-open Xcode , "Build Active Architecture Only" "" "Pods" , .

4.Clean build.

: fooobar.com/questions/37662/...

+18

Source: https://habr.com/ru/post/1533174/


All Articles