forked from sigillabs/mobidex
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
73 lines (67 loc) · 1.72 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import 'node-libs-react-native/globals';
import { EventEmitter } from 'events';
import { Alert, AppRegistry, I18nManager, YellowBox } from 'react-native';
import {
setJSExceptionHandler,
setNativeExceptionHandler
} from 'react-native-exception-handler';
import RNRestart from 'react-native-restart';
import App from './App';
import * as AnalyticsService from './App/services/AnalyticsService';
try {
I18nManager.allowRTL(false);
} catch (e) {
console.log(e);
}
YellowBox.ignoreWarnings([
'Class RCTCxxModule',
'Warning:',
'Method',
'Module',
'MOBIDEX:'
]);
EventEmitter.defaultMaxListeners = 1000;
AppRegistry.registerComponent('mobidex', () => App);
setJSExceptionHandler((error, isFatal) => {
if (isFatal) {
if (error) {
Alert.alert(
'Unexpected error occurred',
`Error: ${error.name} ${
error.message
}. We will need to restart the app.`,
[
{
text: 'Restart',
onPress: () => RNRestart.Restart()
}
],
{ cancelable: false }
);
} else {
Alert.alert(
'Unexpected error occurred',
'We will need to restart the app.',
[
{
text: 'Restart',
onPress: () => RNRestart.Restart()
}
],
{ cancelable: false }
);
}
}
if (error) {
AnalyticsService.trackEvent(isFatal ? 'crash' : 'error', 'report', {
error: `${error.name} ${error.message}`
});
} else {
AnalyticsService.trackEvent(isFatal ? 'crash' : 'error', 'report', {
error: 'Unknown error'
});
}
}, true);
setNativeExceptionHandler(exceptionString => {
AnalyticsService.trackEvent('crash', 'report', 'FATAL: ' + exceptionString);
});