android run缓存报错,ReactNative报错记录以及原因分析

2b37f369626a95672a62306ec5e48f2b.png

ReactNative常用命令

指定版本安装

手机调出调式模式

命令行查看连接的手机设备

ad3e2754732afa494bfb6bddf04b2f7c.png

调试模式网络面板查看请求

ReactNative项目运行的两种方式

命令行运行(ReactNative项目根目录下)

android studio中运行

先在命令行启动(ReactNative项目根目录下)

如果在android studio启动的时候发现无法访问加载js脚本文件,注意用命令 adb shell input keyevent 82 调出手机调式菜单,然后设置IP地址和端口号(ip地址=本地电脑的ip地址:8081)。

然后就可以在android studio中像启动其它原生app项目一样启动项目了。

安装第三方组件

注意点:安装第三方组件link的时候,需要格外注意,link操作的时候,默认添加的是项目包名下的 MainApplication和MainActivity。

如果你的原生android项目不是默认的在项目包路径下的根目录,需要手动添加link。

卸载第三方组件

ReactNative运行错误汇总

error: bundling failed: Error: ENOENT: no such file or directory

错误1: error: bundling failed: Error: ENOENT: no such file or directory, open

项目中出现过这个错误,当时也没有解决,项目多短时间就突然好了。估计是缓存问题,可以尝试清理react native 编译产生的缓存文件。

of output files for task ‘:app:processDebugResources’ property ‘sourceOutputDir

错误2:of output files for task ‘:app:processDebugResources’ property ‘sourceOutputDir’

解决方法:

a.清除gradle缓存文件

b.删除android项目中的build文件目录,重新gradle语法编译项目。

bundling failed: Error: Unable to resolve module

错误3:bundling failed: Error: Unable to resolve module

error: bundling failed: Error: Unable to resolve module 路径: Module XXXXXXXX does not exist in the Haste module map

解决方案: 就按照提示在命令行输出就行了,每一条都执行一下

Application has not been registered

错误4:Application has not been registered

React Native出错:Application XXX has not been registered解决方案

解决方法:

1.可能先前运行过其他ReactNative项目,此时退出终端程序,重新运行即可。

2.设置项目名称在AppDelegate.m和index.ios.js中不一致,或者在主业务逻辑页面中的名称不一致,如下图所示。找到问题更换即可

998a8a825c9c84c8b5da972e9eb39bd7.png

app.json中的名字需要与android原生activity调用的组件名字保持一致。

问题5:Show network requests such as fetch, WebSocket etc. in chrome dev tools

谷歌浏览上的network面板使用fetche网络请求的时候,无法查看请求信息。

解决方案:暂时没有好的解决方案,请查阅https://github.com/facebook/react-native/issues/934

Command failed: gradlew.bat installDebug

错误5:Error: Command failed: gradlew.bat installDebug

React Native version mismatch

错误6:React Native version mismatch 错误

https://blog.csdn.net/awy1988/article/details/80336913

Unable to load script from assets ‘index.android.bundle’

错误7:Unable to load script from assets ‘index.android.bundle’. Make sure your bundle is packaged correctly or you’re running a packager server. App crash in release build only

搜索关键词:that your bundle index.android.bunde is packaged correctly for release

错误原因:这里报错原因是没有找到index.android.bundle

解决方案:

https://segmentfault.com/a/1190000019529044

https://github.com/facebook/react-native/issues/22076

https://cloud.tencent.com/developer/ask/151569/answer/263098

找到app/build.gradle:

Unable to load script.Make sure you’re either running a metro server( run ‘react-native start’ ) or that your bundle ‘index.android.bundle’ is packaged correctly for release.

报错描述:

在android studio中启动ReactNative项目的时候报错,报错信息如上。通过命令行react-native run-android启动ReactNative项目不会报错。

解决方法:

Failed to resolve: com.facebook.react:react-native+ 版本号为0.20.1问题解决

问题描述:

Android项目和RN混编, 在集成RN过程中,遇到了Failed to resolve: com.facebook.react:react-native+时,RN版本号始终为0.20.1的问题.

事实上, 当前RN库的版本号最新为0.59.5

解决方法:

这个本地的maven库地址一定要可以找得到, 才能使用com.facebook.react:react-native:+获得最新的rn版本号.

我的项目之所以出问题是因为,项目在集成rn时本地的仓库地址做了更新, 走错了仓库, 所以没有拿到正确的本地maven地址.

关于这个问题,github上有相应的issue.附上地址:

https://github.com/facebook/react-native/issues/12309

大家只要把本地maven库配置好久可以啦!

React Native开发报错Task ‘installDebug’ not found in project ‘:app’.的解决办法

问题描述:

解决方法:

Error: Activity class {xxx/xxx.MainActivity} does not exist.

问题描述:

Android studio中能正常通过“react-native start” 的方式正常启动APP混编项目中RN界面。

但是通过命令行“react-native run-android”的方式启动,就发生了如下的异常!

092475955637ec55ba0ca375d623e650.png

问题解决:

原因是:MainActivity类必须要在项目包路径下的根目录。

后期通过react-native run-android的方式启动项目,需要支持自定义APP启动类的路径,而不是默认放在项目的根路径下,并且是MainActivity这个默认类。

RN 集成navigation时Android报错 null is not an object (evaluating ‘_RNGestureHandlerModule.default.Direction

问题描述:

项目架构搭建的时候集成react-navigation报错。大致分析下原因,应该是link操作失败,需要手动完成link操作。为什么会失败,大致由于link操作的时候,默认的是:包路径根项目下的MainApplication和MainActivity这两个类 但是很多时候,我们的原生项目中的类不在包路径根目录,所以会报link失败,无法找到第三方组件的错误!

问题解决:

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值