Files
react-native-firebase/docs/crashlytics/ios.md

877 B

title, description
title description
iOS Manual Installation Manually integrate Crashlytics into your iOS application.

iOS Manual Installation

The following steps are only required if your environment does not have access to React Native auto-linking.

CocoaPods Installation

Add the RNFBCrashlytics Pod

Add the RNFBCrashlytics, Fabric & Crashlytics Pod to your projects /ios/Podfile:

target 'app' do
  ...
  pod 'RNFBCrashlytics', :path => '../node_modules/@react-native-firebase/crashlytics'
  pod 'Fabric', '~> 1.10.2'
  pod 'Crashlytics', '~> 3.13.2'
end

Update Pods & rebuild the project

You may need to update your local Pods in order for the Pods to be installed in your project:

$ cd /ios/
$ pod install --repo-update

Once the Pods have installed locally, rebuild your iOS project:

npx react-native run-ios