mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-11-22 23:28:56 +03:00
15 lines
500 B
JavaScript
15 lines
500 B
JavaScript
import { AppRegistry } from 'react-native';
|
|
import AppCenter from 'appcenter';
|
|
import codePush from 'react-native-code-push';
|
|
import { name as appName } from './app.json';
|
|
import 'core-js';
|
|
import 'intl';
|
|
|
|
// set check frequency options
|
|
const codePushOptions = { checkFrequency: codePush.CheckFrequency.ON_APP_START };
|
|
const eSteemApp = codePush(codePushOptions)(require('./App').default);
|
|
|
|
AppCenter.setLogLevel(AppCenter.LogLevel.VERBOSE);
|
|
|
|
AppRegistry.registerComponent(appName, () => eSteemApp);
|