Peter Pohlmann
Peter Pohlmann

Reputation: 1508

Firebase after pod update missing CFBundleIdentifier in its Info.plist for GoogleToolboxForMac.framework

i made a pod update to update the firebase pods :

Installing Firebase (3.11.0)
Installing FirebaseAnalytics (3.6.0)
Installing FirebaseAuth (3.1.0)
Installing FirebaseCore (3.4.6)
Installing FirebaseDatabase (3.1.1)
Installing FirebaseInstanceID (1.0.8)
Installing FirebaseStorage (1.0.5)
Installing GTMSessionFetcher (1.1.7)
Installing GoogleInterchangeUtilities (1.2.2)
Installing GoogleSymbolUtilities (1.1.2)
Installing GoogleToolboxForMac (2.1.0)

Compiling is successful but when the simulator starts i get this messages:

.....Frameworks/GoogleToolboxForMac.framework did not have a CFBundleIdentifier in its Info.plist

I had some trouble with pod updates before and it worked after a new install of all pods :

pod deintegrate
sudo rm -fr ~/Library/Caches/CocoaPods/
sudo rm -fr ~/.cocoapods/repos/master/
pod install

it usually worked, but not in this case. Any ideas ?

Upvotes: 1

Views: 384

Answers (1)

Coder-256
Coder-256

Reputation: 5618

Delete the framework manually and try reinstalling it.

Upvotes: 2

Related Questions