登录 注册
当前位置:主页 > 资源下载 > 10 > React-Native-Remote-Update for Android code

React-Native-Remote-Update for Android code

  • 更新:2024-10-23 17:24:44
  • 大小:32.94MB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

使用React-Native实现app热部署的一次实践 效果 原理 demo中执行热部署的实现流程如下: 最新版本的React Native版本中,加入了如下支持: /** * Path to the JS bundle file to be loaded from the file system. * * Example: {@code "assets://index.android.js" or "/sdcard/main.jsbundle} */ public Builder setJSBundleFile(String jsBundleFile) { mJSBundleFile = jsBundleFile; return this; } 这是热部署的突破口,由于React Native加载的js文件都打包在bundle中,通过这个方法,可以设置app加载的bundle来源。若检测到远端存在更新的bundle文件,下载好后重新加载即可。 为了在运行中重新加载bundle文件,查看Reac