mirror of
https://github.com/zhigang1992/devhub.git
synced 2026-06-18 03:58:44 +08:00
16 lines
386 B
JavaScript
16 lines
386 B
JavaScript
// @flow
|
|
|
|
import codePush from 'react-native-code-push'
|
|
import { AppRegistry } from 'react-native'
|
|
|
|
import { name as appName } from './package.json'
|
|
|
|
import App from './src/'
|
|
|
|
const codePushOptions = {
|
|
checkFrequency: codePush.CheckFrequency.ON_APP_RESUME,
|
|
installMode: codePush.InstallMode.IMMEDIATE,
|
|
}
|
|
|
|
AppRegistry.registerComponent(appName, () => codePush(codePushOptions)(App))
|