在React Native中配置项目时发生问题

时间:2018-10-20 13:55:10

标签: android react-native

我是React Native开发的新手。我正在尝试使用react-native run-android在模拟器中运行项目。我遇到错误了。

foysal@laptop:~/Videos/addbook$ react-native run-android
Starting JS server...
Building and installing the app on the device (cd android && ./gradlew installDebug)...

> Configure project :app
Observed package id 'tools' in inconsistent location '/home/foysal/Android/Sdk/tools' (Expected '/home/foysal/Android/Sdk/tools/tools')
Checking the license for package Android SDK Build-Tools 27.0.3 in /home/foysal/Android/Sdk/tools/licenses
Warning: License for package Android SDK Build-Tools 27.0.3 not accepted.
Checking the license for package Android SDK Platform 27 in /home/foysal/Android/Sdk/tools/licenses
Warning: License for package Android SDK Platform 27 not accepted.

FAILURE: Build failed with an exception.

* What went wrong:
A problem occurred configuring project ':app'.
> Failed to install the following Android SDK packages as some licences have not been accepted.
     platforms;android-27 Android SDK Platform 27
     build-tools;27.0.3 Android SDK Build-Tools 27.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: /home/foysal/Android/Sdk/tools

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 3s
Could not install the app on the device, read the error above for details.
Make sure you have an Android emulator running or a device connected and have
set up your Android development environment:
https://facebook.github.io/react-native/docs/getting-started.html

2 个答案:

答案 0 :(得分:1)

使用“ npm serve”代替“ react-native run-android”,然后在手机中安装expo应用,或使用genymotion模拟器

答案 1 :(得分:1)

  1. 打开您的 android studio 应用程序,然后从“工具”菜单中选择 SDK 管理器选项。
  2. 选择 Android API 28,然后单击应用按钮从谷歌服务器安装 android API 28。完成安装后,您需要单击“确定”按钮。
  3. 现在您可以使用以下命令运行 React Native 项目:react-native run-android。