$ npm install react-native-crashlytics-beautifier --save
$ react-native link react-native-crashlytics-beautifier
Add pod 'react-native-crashlytics-beautifier', :path => '../node_modules/react-native-crashlytics-beautifier'
into your podfile and execute pod install
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜react-native-crashlytics-beautifier
and addRNCrashlyticsBeautifier.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNCrashlyticsBeautifier.a
to your project'sBuild Phases
➜Link Binary With Libraries
- Run your project (
Cmd+R
)<
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.newtopia.rncrashlyticsbeautifier.RNCrashlyticsBeautifierPackage;
to the imports at the top of the file - Add
new RNCrashlyticsBeautifierPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-crashlytics-beautifier' project(':react-native-crashlytics-beautifier').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-crashlytics-beautifier/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-crashlytics-beautifier')
import RNCrashlyticsBeautifier from 'react-native-crashlytics-beautifier';
RNCrashlyticsBeautifier.init();
arg | type | description |
---|---|---|
error | Error | Error object to log to crashlytics |
isFatal | Boolean | True for fatal exception and false for non-fatal exception |
RNCrashlyticsBeautifier.log(error, isFatal)
const error = new Error('Invalid Response')
RNCrashlyticsBeautifier.log(error, false)