Failed to resolve com.android.support:support-annotations 26.0.1
Posted 陈炳序的Blog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Failed to resolve com.android.support:support-annotations 26.0.1相关的知识,希望对你有一定的参考价值。
所有当前版本的Google库都存放在 Google的Maven repository (maven.google.com
),不在旧的offline-capable support repositories。
在你的项目build.gradle文件中,确保你的allprojects闭包像这样:
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}
如果你使用的是androidstudio3.0+的话,这样:
allprojects {
repositories {
jcenter()
google()
}
}
以上是关于Failed to resolve com.android.support:support-annotations 26.0.1的主要内容,如果未能解决你的问题,请参考以下文章
Android Studio:Failed to resolve ***
Vue.js报错Failed to resolve filter问题原因
vue启动项目的报错:Failed to resolve loader: less-loader You may need to install it.