1.android studio 3.0 preview 解决Gradle: Configure Project or Gradle: Resolve Dependencies ':classpath
原文摘录:
修改build.gradle脚本,将jcenter()放到最前面,这样就可以解决依赖问题了,不清楚为什么maven()不能下载。
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.1.2-4'
repositories {
//maven { url 'https://maven.google.com' } //<span style="color:#ff6666;">这里是直接注释掉了maven(),也可以直接将jcenter()放到前面</span>
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0-alpha1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
//maven { url 'https://maven.google.com' }
//mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
查了一些网上的资料,其他版本的也有人出现过这样的问题,但是有的解决方案是使用maven(),注释掉jcenter() 。。。可以换着尝试一下,修改之后重新构建就可以了。