React Native官方的测试程序踩坑

前端之家收集整理的这篇文章主要介绍了React Native官方的测试程序踩坑前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

React Native官方的测试程序 AwesomePreject可能会出现编译失败


Could not install the app on the device,read the error above for details.

Make sure you have anAndroidemulator running or a device connected and have

set up yourandroiddevelopment environment:

https://facebook.github.io/React-native/docs/android-setup.html


可能的原因有:

1.ANDROID_HOME环境变量配置有问题,或者是PATH配置错了;


2.当前使用的SDK版本太低,把

Android SDK Tool,

Android SDK Platform-tools,

Android SDK Build-tools,

Android Support Repository升级到最高版本;

3.虚拟机(物理机)没有打开,或者没有连接,使用 adb devices命令行可以查看;

前三种可以参考

http://reactnative.cn/docs/0.47/getting-started.html#content

https://facebook.github.io/react-native/docs/getting-started.html

https://stackoverflow.com/questions/38685267/react-native-android-build

4.文件夹AwesomeProject是只读文件,这种情况是因为在调用react-native init AwesomeProject指令初始化程序的时候,使用的是管理员权限打开的cmd,这种情况下把文件夹AwesomeProject删掉,使用普通模式打开cmd进行操作就可以顺利的运行出结果。

ps:愚蠢的我遇到的是第四种情况

欢迎大家补充遇到的问题,以及解决方法

原文链接:https://www.f2er.com/react/303247.html

猜你在找的React相关文章