2017-11-23 34 views
26
[email protected]:~/Desktop/sxtbdemo2$ react-native run-android 
Scanning folders for symlinks in /Users/apple/Desktop/sxtbdemo2/node_modules (8ms) 
JS server already running. 
Building and installing the app on the device (cd android && ./gradlew installDebug)... 

FAILURE: Build failed with an exception. 

What went wrong: 
A problem occurred configuring root project 'sxtbdemo2'. 
Could not resolve all files for configuration ':classpath'. 
Could not find com.android.tools.build:gradle:3.0.1. 
Searched in the following locations: 
    https://jcenter.bintray.com/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.pom 
    https://jcenter.bintray.com/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.jar 
Required by: 
    project : 

Try: 
    Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. 
Get more help at https://help.gradle.org 

BUILD FAILED in 12s 
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/android-setup.html 
+0

xin định dạng câu hỏi của bạn –

+0

bạn sẽ nhớ chọn câu trả lời như giải quyết? cảm ơn bạn. –

Trả lời

75

Nó thường là một vấn đề với kho lưu trữ của bạn trong tệp gradle của bạn.

cho tôi làm việc để thay đổi build.gradle như thế này:

buildscript { 
    repositories { 
     mavenLocal() 
     google() 
     jcenter() 
    } 
    dependencies { 
     classpath 'com.android.tools.build:gradle:3.0.1' 
    } 
} 

vì vậy khi bạn thêm google() nó sẽ làm việc.

+2

Đoán có lỗi trong mã phản ứng-native-cli –

+1

thêm google() cũng hoạt động đối với tôi –

+0

Xác nhận rằng việc thêm google() hoạt động – Kiavor

Các vấn đề liên quan