diff --git a/index.js b/index.js index 75bbba771..4a5b7bc2f 100644 --- a/index.js +++ b/index.js @@ -1,11 +1,15 @@ 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);