android studio jcenter

将工程目录下的build.gradle改成如下

buildscript {
    repositories {
        jcenter{
            url "http://jcenter.bintray.com/"
        }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.2.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter(){
            url "http://jcenter.bintray.com/"
        }
    }
}

这样以后无论想下什么gradle plugin,都可以快速的下到了

这是因为原来下载的时候,都是使用https,下国外的东西可能会有影响,改成http就可以了,亲测!

你可能感兴趣的:(android studio jcenter)