我创建了一个使用react-native和code-push的应用程序。当我启动应用程序时,代码推送会查找服务器上的更改,如果有更改,则会响应:
2017-03-03 11:33:10.919 [info][tid:com.facebook.react.JavaScript] [CodePush] Installing update.
2017-03-03 11:33:10.918777 MyApp[6646:4397574] [CodePush] Installing update.
2017-03-03 11:33:10.933 [info][tid:com.facebook.react.JavaScript] [CodePush] Update is installed and will be run on the next app restart.
2017-03-03 11:33:10.932649 MyApp[6646:4397574] [CodePush] Update is installed and will be run on the next app restart.
我现在的问题是: 安装更新后是否可以自动重启应用程序,以便用户不需要手动关闭并重新启动应用程序?
我在React本机Client SDK中找到了一些方法,但仍不确定如何以及在何处使用这些方法:
https://microsoft.github.io/code-push/docs/react-native.html#codepushrestartapp
希望有人可以帮我解决这个问题?
更新: 与此同时,我想出了如何在不重新启动应用程序的情况下安装更新。现在,使用以下代码在下一个应用程序简历上执行安装:
let codePushOptions = { checkFrequency: codePush.CheckFrequency.ON_APP_RESUME, installMode: codePush.InstallMode.ON_NEXT_RESUME };
MyApp = codePush(codePushOptions)(MyApp);