Using insecure protocols with repositories, without explicit opt-in, is unsupported. Switch Maven repository 'maven(http://devrepo.kakao.com:8088/nexus/content/groups/public/)' to redirect to a secure protocol (like HTTPS) or allow insecure protocols. S..

 

카카오 API 가져오는 경로 url관련하여 문제가 있어보입니다.

https주소로 변경해야한다는 의미 같아

 

검색해보니 쉽게 찾을 수 있었습니다.

 

allprojects {
    repositories {
        google()
        jcenter()
        maven { url 'https://devrepo.kakao.com/nexus/content/groups/public/' }
        //maven { url 'http://devrepo.kakao.com:8088/nexus/content/groups/public/' }
    }
}

+ Recent posts