React Native打包后运行崩溃记录

react

React Native打包后运行崩溃记录

把react native集成到现有android项目中打包后崩溃,debug是没有问题的,于是写个demo,这里记录一下错误,先上图。

如果使用的是android studio 打包,需要先生成index.android.bundle,index.android.bundle.meta,这两个文件是打包后的js文件用于加载js页面到activity上,位于app\src\main\assets目录下,没有就创建assets

生成命令如下

react-native bundle –platform android –dev false –entry-file index.js –bundle-output android/app/src/main/assets/index.android.bundle –assets-dest android/app/src/main/res/

之后使用android studio正常签名打包就可以了

以上是 React Native打包后运行崩溃记录 的全部内容, 来源链接: utcz.com/z/383277.html

回到顶部