Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

react-native run-android Could not find com.android.tools.build:gradle:3.0.1

apple@mosesdeMacBook-Pro:~/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
like image 407
张东生 Avatar asked Nov 23 '17 02:11

张东生


2 Answers

It is usually a problem with your repositories in your gradle files.

for me worked to modify the build.gradle like this:

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

so when you add google() it should work.

like image 88
Michael Ploeckinger Avatar answered Oct 28 '22 06:10

Michael Ploeckinger


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

Add google() inside buildscript() and Sync Project.

Reference : https://developer.android.com/studio/build/gradle-plugin-3-0-0-migration.html#apply_plugin

like image 42
Ketan Ramani Avatar answered Oct 28 '22 05:10

Ketan Ramani