less than 1 minute read

Tried updating all pods in Xcode projects using pod update. Noticed the following messages in the log.

Removing FirebaseInstanceID
Generating Pods project
Integrating client project

After doing Xcode build, noticed the following error.

Framework not found FIRAnalyticsConnector

Looks like firebase pod has been updated and to remove the above error, navigate to Build Settings and search for “FIRAnalyticsConnector”

Open the “Other Linker Flags” setting and remove FIRAnalyticsConnector

Next received “Framework not found FirebaseInstanceID” as well. Repeat the above steps and remove FirebaseInstanceID from Other Linker flags settings. Also make sure to remove from Framework Search Paths (Debug & Release) as well.

Updated: