卧疾丰暇豫,翰墨时间作。这篇文章主要讲述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‘
}
}
原文章链接
https://stackoverflow.com/questions/44071080/could-not-find-com-android-tools-buildgradle3-0-0-alpha1-in-circle-ci【Could not find com.android.tools.build:gradle:3.0.0-alpha3】后面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
}
推荐阅读
- Android实现浮层的上下滑动(支持内部加入View)
- Pretty UI Design For Android -- 滑动背景透明列表
- Android推送技术研究
- Android 开发笔记___Intent的使用
- Android性能优化篇 [ 谷歌官方 ]
- Android 自己定义TextView 实现文本间距
- Android 开发笔记___Activity的生命周期
- Android MemInfo 各项的意义(转)
- AppFuse 3常见问题与解决方法