Thursday, August 18, 2016

Android “Could not get BatchedBridge, make sure your bundle is packaged properly”

今天,刚把项目集成到 React-Native  里面,安装的时候没什么问题。但是,打开的时候,出现了问题,
如图:




如何解决:
参考:


针对Mac:
第一步: 
打开你的terminal
进入你的ReactNative 初始化的根目录里面。
然后, 运行下面这行命令



curl "http://localhost:8081/index.android.bundle?platform=android" -o "android/app/src/main/assets/index.android.bundle"

这行命令是把你本地的 jsBundle 下载到你的 android/app/src/main/assets/index.android.bundle

如果没有 assets目录的自己新建一个就可以了!

当你再次打包的时候,就把你的本地的Js打包进去了。这个时候,你就可以进行测试了!


本人测试没什么问题!



















No comments:

Post a Comment