ios - where to put s.static_framework = true

thank you for helping, I am able to find out the solution. Below is the solution, hope it can help other people like me.

I am using Pod to integrate the Firebase to my React native app (@react-native-firebase/app) but receive this error:

enter image description here

We have to add s.static_framework = true in the Podfile of react-native-firebase, NOT Pod file of our project.

The Pod file of react-naive-firebase named RNFApp.podspecs. After we open it, we can see there is a line

s.static_framework = false

Just change it from false to true

Hope my answer can help.

Tags:

Ios

Cocoapods