I am trying to use react-native-firebase module with react native.
Error I am getting:
Steps I followed:
Step1: Created basic app
react-native init myFirebaseApp
Moved to project
cd myFirebaseApp
Installed module
npm install --save react-native-firebase
Step 2: Setup Firebase SDK (https://rnfirebase.io/docs/v4.2.x/installation/ios)
created firebase app and downloaded GoogleService-Info.plist for iOS
copied
GoogleService-Info.plist
in project, then
pod init
Add these line to pod file
pod 'Firebase/Core'
pod 'Firebase/Firestore'
Installed dependencies
pod install
and finally linked library
react-native link
Someone can guide me what I am missing or doing wrong?