Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

FBLPromises Framework not found

I am tryin to install Firebase using cocoapods so I may send push-notifications to user devices. However, everytime I follow the instructions step by step, I get this error that says "framework not found FBLPromises". Anyone have any ideas how to fix? Everything I have looked up online does not work.

like image 825
wcdean217 Avatar asked Apr 29 '20 19:04

wcdean217


2 Answers

The following worked for me:

What probably happened (for anyone still looking) is that after running

    pod install

in your project's directory, you are still building the ".xcodeproj" file instead of running the newly created ".xcworkspace" from the pod install. Remember, after pod installing, you MUST do edits on and work with the .xcworkspace instead.

like image 154
Neloy Kundu Avatar answered Nov 02 '22 21:11

Neloy Kundu


Go to your Pod target and add arm64 in Excluded Architecture

enter image description here

like image 2
Rahul Panzade Avatar answered Nov 02 '22 21:11

Rahul Panzade