react-native run-android出错的一个可能原因

今天新建rn项目,在run-android这一步的时候一直出错,在此记录:

react-native run-android出错的一个可能原因_第1张图片关键错误信息:

> Failed to install the following Android SDK packages as some licences have not been accepted.
     build-tools;28.0.3 Android SDK Build-Tools 28.0.3
  To build this project, accept the SDK license agreements and install the missing components using the Android Studio SDK Manager.
  Alternatively, to transfer the license agreements from one workstation to another, see http://d.android.com/r/studio-ui/export-licenses.html

  Using Android SDK: C:\Users\everrise\AppData\Local\Android\Sdk

 

分析:

就是这个安卓的sdk如果要install,需要你同意它的license

cd 到上边那个路径里:cd  C:\Users\everrise\AppData\Local\Android\Sdk(自己的sdk安装路径)

cd tools

cd bin

// 以上三行是进入到自己到sdk目录文件夹下的bin目录

2、在 bin 目录下执行如下命令  (win系统下,mac命令不一样) 

sdkmanager.bat --licenses 

执行之后,它会提示你去允许认证,然后命令会提醒你确定y/n(accept lincense),一路y下去便可以了。

你可能感兴趣的:(安卓)