Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

receiving "framework not found MeasurementNanoPB" error on updating firebase pods to latest version

Earlier was using 5.7.0 but there are some issue related to firebase storage. to find the solution of this I read somewhere that I need to update the firebase with latest version i.e 5.12.0 Or greater.

I am updating a new version but facing "framework not found MeasurementNanoPB" error. Search a lot regarding the same but no solution found.

There are no relavent steps, anyone who have updated firabse with latest version might have received the same error.

  • Tried manually installing the firebase sdk.
like image 956
Ravi Agrawal Avatar asked Nov 07 '22 22:11

Ravi Agrawal


1 Answers

Resolved!

Tried deleting Pod.lock file, removed all the pods related to firebase from the Podfile. install pod without firebase. When it is done, add all the pods one by one for firebase.

It still gives an error for "GRPCClient not found". Add below framework in Podfile. pod gRPC-ProtoRPC.

Then got error for "measurement nanopb.framework" not found so just follow below steps: 1) Clean project 2) Remove derived data from respective folder 3) Now search for "nanopb" in whole project(you will find under OtherLinkerFlags) and remove it. 4) Now Install POD again.

And you are done. Now the project will run without errors.

like image 186
Ravi Agrawal Avatar answered Nov 15 '22 08:11

Ravi Agrawal