Android studio gradle 依赖后报错后出现Failed to resolve: com.github。。。。。

原文:https://blog.csdn.net/cheweilol/article/details/79705196?utm_source=blogxgwz1

 

原因是因为你将添加的maven { url “https://jitpack.io” } 添加至了buildscript 而不是allprojects

解决方法为:

在项目的build.gradle中添加:

allprojects { 
repositories { 
maven { url “https://jitpack.io” }//这就是添加的

}

 

然后在Module:app的build.gradle中添加: 
dependencies { 
compile fileTree(dir: ‘libs’, include: [‘*.jar’]) 
testCompile ‘junit:junit:4.12’ 
compile ‘com.android.support:appcompat-v7:24.2.1’ 
compile ‘com.github.Aspsine:SwipeToLoadLayout:1.0.3’ 
}
 

你可能感兴趣的:(Android,错误)