欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

React Native 学习中遇到的问题记录

程序员文章站 2022-05-31 16:09:50
...
  • Android4.4系统,在开发调试时出现
adb -s 7SLZIROZLB95MZTW reverse tcp:8081 tcp:8081

error: closed

不用担心,在正式发布后Android4.4系统是可以运行的,建议在测试开发的时候使用Android5.0以上系统

  • Could not get BatchedBridge

红屏问题"Could not get BatchedBridge, make sure your bundle is packaged correctly"

解决方法: 手动执行命令:


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

正常执行完assets目录中会多出几个文件, 即可解决这个问题。

如果没有assets目录,手动添加下,再执行上述命令

  • could not connetc development server

这个是由于本地server没有启动,一般在运行react-native run-android / run-ios 时会自动启动

如果没有启动,我们可以执行 react-native start 即可,app reload

转载于:https://my.oschina.net/kipeng/blog/896237