在allprojects下的repositories闭包里面添加
jcenter()
和maven {url 'https://jitpack.io'}
,具体可以看你的第三方框架需要添加什么仓库,大多数都只需要上面两个。
我的build.gradle(Project)完整内容如下:文章来源:https://www.toymoban.com/news/detail-680213.html
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:4.2.1"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
google()
mavenCentral()
maven {
url 'https://jitpack.io'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
每个人都是有缺陷的,即使外表看起来很无暇。文章来源地址https://www.toymoban.com/news/detail-680213.html
到了这里,关于Failed to resolve: com.github.mcxtzhang:SwipeDelMenuLayout:V1.3.0的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!