官方文档 报错集锦

必须安装的依赖有:Node、React Native 命令行工具、Python2 以及 JDK 和 Android Studio。

一、配置python2

image.png

二、react-native-cli安装

  1. # 使用nrm工具切换淘宝源
  2. npx nrm use taobao

Yarn、React Native 的命令行工具

  1. npm install -g yarn react-native-cli

三、安装 Android SDK

Tip:SDK下载后得安装
image.png

image.png

四、连接夜神模拟器运行

打开夜神模拟器,连接

  1. adb connect 127.0.0.1:62001

image.png

  1. //查看连接设备
  2. adb devices
  3. //如果有其他设备
  4. adb reveser tcp:8081 tcp:8081

五、输出hello world

  1. //app.js
  2. import React, { Component } from 'react';
  3. import { Text, View } from 'react-native';
  4. export default class HelloWorldApp extends Component { //HelloWorldApp可以自定义名字
  5. render() {
  6. return (
  7. <View style={{ flex: 1, justifyContent: "center", alignItems: "center" }}>
  8. <Text>Hello, world!</Text>
  9. </View>
  10. );
  11. }
  12. }

六、启动

路径别他妈有中文!!!

  1. npx react-native run-android