원문 : https://ssons.tistory.com/61
build.gradle 설정 중
repositories { mavenCentral(); }
해당 부분에서 제대로 불러오지 못하는 경우가 있다. 이를 jcenter()로 교체해주면 정상적으로 동작!
repositories { jcenter(); }