Using react native firebase crashlytics.. While importing this library:
“import io.invertase.firebase.crashlytics.ReactNativeFirebaseCrashlyticsNativeHelper;”`
the ‘io’ line is underlined with error: expected = and unable to import and use the further code:
I tried to import Crashlytics library from firebase but its not working.
<Button title="Crash Button"
onPress={
try {
//...
} catch (Exception e) {
ReactNativeFirebaseCrashlyticsNativeHelper.recordNativeException(e);
return null;
}}
/>