Project 'Pods' was rejected as an implicit dependency for 'Pods.framework' because its architectures didn't contain all required architectures

后端 未结 6 1333
梦谈多话
梦谈多话 2020-12-29 20:55

Target \'AAA-Pods\' for project \'Pods\' was rejected as an implicit dependency for \'Pods_AAA.framework\' because its architectures \'x86_64\' didn\'t contain all required

6条回答
  •  暖寄归人
    2020-12-29 21:26

    I had the same issue recently after migrating to Xcode 10.1.

    Building with Debug config was working just fine, however archiving with Release config was generating this warning. And then archiving would fail, because in the main project all the module imports referring to Pods were failing.

    Checking the Build Settings for the Project I realised that iOS Deployment Target was showing a different value for my Release config. iOS 10.0, while my Podfile was set to platform :ios, '11.0'.

提交回复
热议问题