When I run pod install I get the following error:
[!] Can't merge user_target_xcconfig for pod targets: ["Intercom", "NewRelicAgent"]. Singular build setting EXCLUDED_ARCHS[sdk=iphonesimulator*] has different values
How can I fix this error?
Suggestion: Both Intercom and NewRelicAgent are trying to add EXCLUDED_ARCHS to the user config. Most libraries I’ve seen only adds arm64
to EXCLUDED_ARCHS because Apple silicon but NewRelicAgent also adds arm64e
as well.
Is arm64e
needed? Removing it from NewRelicAgent podspec might solve the issue.
What I tried so far: I have followed the steps here but I still see the warning.