Error:Authentication scheme ‘all’(Authentication) is not supported by protocol ‘file’

升级gradle后编译报错:Error:Authentication scheme ‘all’(Authentication) is not supported by protocol ‘file’


将原项目的build.gradle文件中的
maven {  
    url getMavenRepoUrl()  
    credentials {  
        username getMavenUsername()  
        password getMavenApiKey()  
    }  
}  



替换成

maven { url "https://jitpack.io" } 


即可。

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