Could not find com.android.tools.build:gradle:3.0.1.

升級Android Studio 3.0.1版本之後運行RN項目出現如下錯誤

A problem occurred configuring root project 'DemosAndroid'.

> 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

解決方法:在project的builde.gradle做如下操作分別加上google()

buildscript {

repositories {

    google()

    ....

}

dependencies {

    classpath 'com.android.tools.build:gradle:3.0.0'



    // NOTE: Do not place your application dependencies here; they belong

    // in the individual module build.gradle files

}

}


allprojects {

    repositories {

        google()

        .....

    }

}

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章