// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { google()//保持这个放在顶部 mavenCentral() maven { url "https://jitpack.io" } maven { url 'http://developer.huawei.com/repo' } // 超级实用:某某影响,很多被墙,强烈推荐阿里云镜像更新 maven { url "http://maven.aliyun.com/nexus/content/groups/public/" } maven { url 'https://maven.fabric.io/public' } jcenter()//保持这个放在底部 gradlePluginPortal() } dependencies { //classpath 'com.android.tools.build:gradle:3.2.1' //classpath 'com.jakewharton:butterknife-gradle-plugin:9.0.0' classpath "com.android.tools.build:gradle:4.1.3" // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { google()//保持这个放在顶部 mavenCentral() maven { url "https://jitpack.io" } maven { url 'http://developer.huawei.com/repo' } // 超级实用:某某影响,很多被墙,强烈推荐阿里云镜像更新 maven { url "http://maven.aliyun.com/nexus/content/groups/public/" } maven { url 'https://maven.fabric.io/public' } jcenter() gradlePluginPortal() flatDir { dirs 'libs' } } } task clean(type: Delete) { delete rootProject.buildDir }