Error:Unknown host 'jcenter.bintray.com'.

后端 未结 8 1854
囚心锁ツ
囚心锁ツ 2020-12-14 23:22

Error:Unknown host \'This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server\'.

8条回答
  •  一个人的身影
    2020-12-15 00:04

    I got the same error and solved the problem using following instruction.

    Go to your project level gradle build script add maven { url"https://jitpack.io"} into allprojects.

    allprojects {
        repositories {
            google()
            jcenter()
            maven {url"https://jitpack.io"}
    
    
        }
    }
    

提交回复
热议问题