作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要帮助来构建我的 react 原生项目。我尝试过react-native run-android,但出现以下错误:
react-native : The term 'react-native' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling
of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ react-native run android
+ ~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (react-native:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
最佳答案
艾亚伊·开尔文
您将需要 Node、React Native 命令行界面、JDK 和 Android Studio。
我以为你有,开发操作系统:Linux,目标操作系统:Android
节点 https://nodejs.org/en/download/package-manager/
React Native CLI
npm install -g react-native-cli
Java 开发工具包 http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html
Android开发环境 https://developer.android.com/studio/index.html
守望者(可选) https://facebook.github.io/watchman/docs/install.html#buildinstall
创建新应用程序
$ react-native init AwesomeProject
$ cd AwesomeProject
$ react-native run-android
注意:如果您收到如下错误:“无法在真实设备上从 Assets 'index.android.bundle'加载脚本”
那么,(如果没有创建的话)将目录创建为 android/app/src/main/assets
$ 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
或
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
那么,
$ react-native run-android
关于react-native - 运行react-native run android时无法识别Tterm 'react-native',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48704721/
我是一名优秀的程序员,十分优秀!