diff --git a/index.android.js b/index.android.js index 8ab4e98c63..245159cb38 100644 --- a/index.android.js +++ b/index.android.js @@ -1,10 +1,4 @@ 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)); +AppRegistry.registerComponent("NaviApp", () => App);