Could not find com.android.tools.build:gradle:3.0.0-alpha3
Posted 一点点征服
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Could not find com.android.tools.build:gradle:3.0.0-alpha3相关的知识,希望对你有一定的参考价值。
最近使用Android Studio 3.0 canary 3 时新建项目遇到标题所示错误,后网上找到解决办法。记录如下:
在项目的build.gradle文件中添加如下内容即可解决。
repositories {
jcenter()
maven {
url ‘https://maven.google.com‘
}
}
原文章链接
后面studio 升级canary 4后,新建项目时,项目的build.gradle文件已经变成下面这样了,也不会再发生上述问题了。
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath ‘com.android.tools.build:gradle:3.0.0-alpha4‘
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
以上是关于Could not find com.android.tools.build:gradle:3.0.0-alpha3的主要内容,如果未能解决你的问题,请参考以下文章
Maven - Could not find artifact
Spark: Could not find CoarseGrainedScheduler
Could not find acceptable representation
./gradlew build:Could not find tools.jar. 解决方法