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

后端 未结 6 1304
梦谈多话
梦谈多话 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:15

    I realize this question is a little old, however I spent 2 days fighting the same issue right after XCode updated to 9.4. What I found was in the info.plist under the key required device capabilities armv7 was set when it should have been blank. Hope this helps someone.

    0 讨论(0)
  • 2020-12-29 21:18

    For future Googlers: 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.

    0 讨论(0)
  • 2020-12-29 21:19

    Another solution which works for me.

    1. Open up .xcodeproject (not .xcodeworkspace)
    2. Find IOS Deployment Target
    3. Choose the latest version you have(My latest version is 11.4)
    0 讨论(0)
  • 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'.

    0 讨论(0)
  • 2020-12-29 21:32

    On a very new project on Xcode 9.4.1, the issue was that my Podfile's deployment target was set to platform :ios, '11.0' while my project's iOS deployment target was set to 10.3.

    This caused the generated Pods project to target iOS 11.0 (supported by only 64-bit devices on arm64 architecture), but since my main project targets 10.3 and includes armv7 devices, this doesn't work when archiving a Release build since a Release build also builds nonactive architectures by nature (unless you only support iOS 11 devices).

    The fix then is to simply change the Podfile's deployment target to match your main project's, in my case it's platform :ios, '10.3'. Afterwards, run pod update and the Pods project should be regenerated. Launch Xcode, perform a clean and you should be able to run the archive process.

    0 讨论(0)
  • 2020-12-29 21:38

    Possible Solution:

    1. Open Xcode project (cocoapods project) using .xc... file.
    2. Select Pods project in the project navigator (blue icon on left).
    3. Under Project, ensure Pods (blue icon) is selected.
    4. Navigate to Build Settings.
    5. Set Build Active Architectures Only = No (for both debug & release).
    6. Optional: set base sdk to latest iOS (or select the preferred platform/version).

    Note: This solution resolved this issue (warning and linker error) for me.

    Suggested resources:

    Github Project: https://github.com/CocoaPods/CocoaPods/issues/2053 Github Pull Request: https://github.com/CocoaPods/CocoaPods/pull/1352

    0 讨论(0)
提交回复
热议问题