11 lines
328 B
JavaScript
11 lines
328 B
JavaScript
import { AppRegistry } from "react-native";
|
|
import codePush from "react-native-code-push";
|
|
import App from "./App";
|
|
|
|
let codePushOptions = {
|
|
installMode: codePush.InstallMode.ON_NEXT_RESTART,
|
|
checkFrequency: codePush.CheckFrequency.MANUAL,
|
|
};
|
|
|
|
AppRegistry.registerComponent("NaviApp", () => codePush(codePushOptions)(App));
|