业无高卑志当坚,男儿有求安得闲?这篇文章主要讲述在windows下搭建React Native Android开发环境相关的知识,希望能为你提供帮助。
1.登录 React Native 中文网
http://reactnative.cn/docs/0.45/getting-started.html
2.登录 Chocolatey 下载包管理工具
https://chocolatey.org/
3.打开 cmd 复制粘贴 Cmd.exe 中的命令代码
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((new-object net.webclient).DownloadString(‘https://chocolatey.org/install.ps1‘))" &
&
SET PATH=%PATH%;
%ALLUSERSPROFILE%\chocolatey\bin
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString(‘https://chocolatey.org/install.ps1‘))" &
&
SET "PATH=%PATH%;
%ALLUSERSPROFILE%\chocolatey\bin"
4.安装nodejs
choco install nodejs.install
5.安装python2
choco install python2
6.安装脚手架
npm install -g react-native-cli
7.创建项目
react-native init newPro
8.dirr 查看项目目录
9.安装jdk
10.安装android studio
11.启动模拟器
【在windows下搭建React Native Android开发环境】12.运行react native
react-native run-android
推荐阅读
- 五步搞定Android开发环境部署——非常详细的Android开发环境搭建教程
- android 4.0主线程訪问网络问题
- Android layout_margin 无效的解决办法
- Android界面相关的类
- 《AndroidStudio每日一贴》7. 怎样将本地变更文件移到其他的changelist()
- hbuilder 打包app简易教程
- Android 设计模式情景分析——观察者模式
- Spring+SpringMVC+MyBatis深入学习及搭建——MyBatis原始Dao开发和mapper代理开发
- 使用Fiddler对Android手机的应用数据进行抓包分析