From fd78ae8ce825601017c92bd6eaf8478e8317bb6c Mon Sep 17 00:00:00 2001 From: Kshitij Pramod Ghongadi Date: Mon, 16 Sep 2024 22:17:52 +0530 Subject: [PATCH] TP-80677 | Decoupling codepush from RN App (#12570) --- index.android.js | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) 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);