Android:找不到com.android.tools.build:gradle:3.0.1

时间:2018-08-30 00:44:25

标签: android react-native

不好意思,我不熟悉react-native和android。当我第一次加载我的react-native项目并尝试同步和更新时,出现此错误。

enter image description here

1 个答案:

答案 0 :(得分:0)

您需要为构建脚本存储库添加google()。在这里查看我的答案:https://stackoverflow.com/a/51151050/8034839

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}