After upgrading to XCode 12, my project doesn\'t build for the simulator anymore.
The error I get is:
ld: in ... /Pods/FirebaseAnalytics/Frameworks/FIRAnal
My case was a little different. According to this Firebase engineer,
FIRAnalyticsConnector
is now part of the xcframework version of FirebaseAnalytics and isn't needed to link.
Going into the Targets Build Settings
(not the Project), searching for Other Linker Flags
, and then deleting FIRAnalyticsConnector
from the list took care of the issue for me.
Interestingly, when I ran pod deintegrate
and the pod install
it did not fix this issue.