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
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.
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.
Another solution which works for me.
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'
.
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.
Possible Solution:
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