Received status code 502 from server: Bad Gateway Disable Gradle 'offline mode' and sync project 빌드 에러 해결

yeji·2022년 1월 24일
0

원인

아래 저장소에서 가져오지 못하여 에러 발생
maven { url 'https://dl.bintray.com/ekito/koin' }
Received status code 502 from server: Bad Gateway Disable Gradle 'offline mode' and sync project

해결 방법

allprojects {
    repositories {
        google()
        jcenter()
        
        mavenCentral() // (1) add
//        maven { url 'https://dl.bintray.com/ekito/koin' } // (2) remove
    }
}
profile
🐥

0개의 댓글