Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Framework not found FIRAnalyticsConnector from Xcode 12.4

Getting "Framework not found FIRAnalyticsConnector" error after pod update in Xcode 12.4. I have cleaned and rebuild the project but It stays in there. What should I do?

like image 618
iamburak Avatar asked Feb 04 '21 08:02

iamburak


People also ask

Where is linked frameworks and libraries Xcode?

If you're building for iOS, tvOS, or watchOS: On your application targets' “General” settings tab, in the “Linked Frameworks and Libraries” section, drag and drop each framework you want to use from the Carthage/Build folder on disk.

Is missing one or more architectures required by this target x86_64?

framework' is missing one or more architectures required by this target: x86_64. This can happen when switching between simulator versions on a Cocoapods project. Cleaning the project should fix the issue. This error occurs when a arm64 iPhoneSimulator slice cannot be found for one of your binary dependencies.


1 Answers

Go to your project's target Build Settings > Search FIRAnalyticsConnector .

You will see Other Linker Flags.

Remove these lines below:

-framework
"FIRAnalyticsConnector"

Now, It should work as expected.

like image 192
iamburak Avatar answered Oct 24 '22 18:10

iamburak