Pods was rejected as an implicit dependency for 'libPods.a' because its architectures 'XXX' didn't contain all required architectures

后端 未结 6 1990
没有蜡笔的小新
没有蜡笔的小新 2020-12-29 01:07

A friend updated Cocoapods in our project. When I pulled the latest stuff from git I got the following error:

Pods was rejected as an implicit dependency for         


        
6条回答
  •  猫巷女王i
    2020-12-29 01:52

    Also make sure that your podfile targets the same iOS version your project targets:

    For example, if you're targeting iOS 10.0 in your Xcode project your podfile should include platform :ios, '10.0' at the top, too.

    Per this solution, which was the problem in my case.

提交回复
热议问题