博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
react-native 解决“Could not get BatchedBridge...” 的问题
阅读量:6820 次
发布时间:2019-06-26

本文共 892 字,大约阅读时间需要 2 分钟。

hot3.png

$> cd myproject  $> react-native start > /dev/null 2>&1 &  $> curl "http://localhost:8081/index.android.bundle?platform=android" -o> "android/app/src/main/assets/index.android.bundle"

(if the folder assets does not exists create it)

Then run from project root

$> (cd android/ && ./gradlew assembleDebug)

install the created apk to you device, from location: android/app/build/outputs/apk/app-debug.apk

or -----------修改package.json

"scripts": {    "build": "(cd android/ && ./gradlew assembleDebug)",    "start": "node node_modules/react-native/local-cli/cli.js start",    "bundle-android": "react-native bundle --platform android --dev false --entry-file index.android.js --bundle-output android/app/src/main/assets/index.android.bundle --sourcemap-output android/app/src/main/assets/index.android.map --assets-dest android/app/src/main/res/"  },

 

 

转载于:https://my.oschina.net/zqx123/blog/734420

你可能感兴趣的文章
显示磁盘信息
查看>>
基于spark和sparkstreaming的word2vec
查看>>
JPA多对一单向关联
查看>>
系统查看硬件相关信息命令
查看>>
sublime 3 text 中运行Java
查看>>
前序遍历
查看>>
loadrunner检查点设置失败,日志中SaveCount无法被正常统计出来
查看>>
循环结构进阶
查看>>
bzoj 2809: [Apio2012]dispatching
查看>>
关于数据库查询时报“query block has incorrect number of result columns”
查看>>
记录一款Unity VR视频播放器插件的开发
查看>>
webApi跨域问题
查看>>
读取文件
查看>>
json字符串转换对象的方法1
查看>>
浅谈网站路径分析 转自“蓝鲸网站分析博客”
查看>>
C# Note36: .NET unit testing framework
查看>>
我的博客第一天
查看>>
margin注意问题
查看>>
事物的回滚
查看>>
Xcode7 iOS9.0 的真机调试
查看>>