mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-11-21 19:56:17 +03:00
21 lines
660 B
JavaScript
21 lines
660 B
JavaScript
import { AppRegistry, LogBox } from 'react-native';
|
|
import AppCenter from 'appcenter';
|
|
import { name as appName } from './app.json';
|
|
|
|
import 'react-native-url-polyfill/auto';
|
|
import 'intl';
|
|
import 'intl/locale-data/jsonp/en-US';
|
|
import 'react-native-get-random-values';
|
|
|
|
// set check frequency options
|
|
const EcencyApp = require('./App').default;
|
|
|
|
AppCenter.setLogLevel(AppCenter.LogLevel.VERBOSE);
|
|
|
|
// TODO Remove ignoreLogs when referenced issue is fixed properly
|
|
// ref: https://github.com/ecency/ecency-mobile/issues/2466
|
|
// ignore warnings
|
|
LogBox.ignoreLogs(['Require cycle:', 'Remote debugger']);
|
|
|
|
AppRegistry.registerComponent(appName, () => EcencyApp);
|