Could not download okhttp.jar (com.squareup.okhttp3:okhttp:3.8.1)

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

报错  Unable to resolve dependency for ':app@ReleasesDebug/compileClasspath': Could not download okhttp.jar (com.squareup.okhttp3:okhttp:3.8.1) Open File Show Details

把这些都填上 就可以解决报错问题了, 

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

            mavenCentral()
            google()
            jcenter()
            maven { url 'https://maven.google.com' }
            maven { url 'http://dl.bintray.com/dev-fingerlinks/maven'}
        }
    }

 

转载于:https://my.oschina.net/lanyu96/blog/2995611

你可能感兴趣的:(Could not download okhttp.jar (com.squareup.okhttp3:okhttp:3.8.1))