jcenter下載不了時,用國內鏡像下載解決

修改build.gradle,如下是本來的配置信息android

buildscript {app

    repositories {maven

        google()gradle

        jcenter()ui

}google

    dependencies {url

        classpath 'com.android.tools.build:gradle:3.1.4'spa

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

// in the individual module build.gradle filesci

    }

}

allprojects {

    repositories {

        google()

        jcenter()

}

}

task clean(type:Delete) {

    delete rootProject.buildDir

}

修改爲如下的配置信息

buildscript{

    repositories{

        maven{ url'http://maven.aliyun.com/nexus/content/groups/public/' }

        maven{ url'http://maven.aliyun.com/nexus/content/repositories/jcenter'}

        google()

}

    dependencies{

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

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

// in the individual module build.gradle files

    }

}

allprojects{

    repositories{

        maven{ url'http://maven.aliyun.com/nexus/content/groups/public/' }

        maven{ url'http://maven.aliyun.com/nexus/content/repositories/jcenter'}

}

}

task clean(type: Delete) {

    delete rootProject.buildDir

}

相關文章
相關標籤/搜索