first commit

This commit is contained in:
NishantRajputRN
2026-04-16 15:23:13 +05:30
commit aa56e08ffd
523 changed files with 229267 additions and 0 deletions
@@ -0,0 +1,8 @@
import * as Crashlytics from '@react-native-firebase/crashlytics';
export const logCrash = (error, context = '') => {
if (context) {
Crashlytics.setAttributes({ screen: context });
}
Crashlytics.recordError(error);
};