react native 0.49 android版本热更新

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react native 0.49 android版本热更新相关的知识,希望对你有一定的参考价值。

版本升级了,发现 老版本的 热更新 用不了,原来是 底层代码 改变了

 private void onJSBundleLoadedFromServer(File file) {
    if (file == null || !file.exists()) {
      Toast.makeText(this, "no file", Toast.LENGTH_SHORT).show();
      return;
    }
    // Toast.makeText(this, "Downloading complete", Toast.LENGTH_SHORT).show();
    try {
      //JSCConfig.EMPTY.getConfigMap();
      HybridData hb=new HybridData();
      ReactApplication application = (ReactApplication) this;
      Class<?> RIManagerClazz = application.getReactNativeHost().getReactInstanceManager().getClass();
      Method method = RIManagerClazz.getDeclaredMethod("recreateReactContextInBackground",
              javascriptExecutorFactory.class, JSBundleLoader.class);
      method.setAccessible(true);

      method.invoke(application.getReactNativeHost().getReactInstanceManager(),
              new JSCJavaScriptExecutorFactory(),
              JSBundleLoader.createFileLoader(file.getAbsolutePath()));
    } catch (NoSuchMethodException e) {
      e.printStackTrace();
    } catch (Exception e) {
      e.printStackTrace();
    }
  }

热更新 思路就是 把 index.android.bundle 下载下来 ,然后获取 路径,传入这个文件路径到这个函数里面,然后会 调用 

recreateReactContextInBackground 这个方法 重新绑定 bundle 文件

以上是关于react native 0.49 android版本热更新的主要内容,如果未能解决你的问题,请参考以下文章

在 React Native 中链接 Pod 的问题

如何运行 React Native 的现有项目

React Native Android - 第一次运行 react-native run-android 时出错

React Native - 在 Android 上构建 react-native-camera 错误

使用 react-native run-android 运行时出现 React-Native 错误

react-native run-android上的React Native错误