2024-03-27 20:36:03 +05:30
|
|
|
import { AppRegistry } from "react-native";
|
|
|
|
|
import codePush from "react-native-code-push";
|
|
|
|
|
import App from "./App";
|
|
|
|
|
|
|
|
|
|
let codePushOptions = {
|
2024-04-26 20:34:37 +05:30
|
|
|
installMode: codePush.InstallMode.ON_NEXT_RESUME,
|
2024-04-26 23:07:17 +05:30
|
|
|
checkFrequency: codePush.CheckFrequency.ON_APP_RESUME,
|
2024-03-27 20:36:03 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
|
|
AppRegistry.registerComponent("NaviApp", () => codePush(codePushOptions)(App));
|