本教程操作环境:Windows10系统、React Native0.67版、Dell G3电脑。
react+native+adb报错怎么办?
react-native在win10下用adb报错的解决方案
react-native在WIN10上面运行用adb链接模拟器,会直接在powershell里报错,
报错大概意思是识别不了adb这个cmdlet函数.
找了很久的解决办法,直接找到adb.exe所在的地方,然后在当前目录下运行adb命令有效
不知道大家是否有更好的解决办法...
相关知识拓展:
adb react-native 调试
打印带时间的log
adb (-d/-s + deviceid)logcat -v time *:S ReactNative:V ReactNativeJS:V //实体设备
adb (-e/-s + deviceid)logcat -v time *:S ReactNative:V ReactNativeJS:V //虚拟机
命令行控制reload
adb -s 0123456789ABCDEF reverse tcp:8081 tcp:8081
adb -d shell input keyevent 82 //实体设备
adb -e shell input keyevent 82 //虚拟设备
以上就是react+native+adb报错怎么办的详细内容,更多请关注编程网其它相关文章!