mirror of
https://github.com/zhigang1992/react-native-firebase.git
synced 2026-04-12 22:39:15 +08:00
877 B
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