티스토리 뷰
Google Play Services 11.2.0버전 부터는 maven.google.com을 통해서 Gradle을 지원한다고 합니다.
따라서 Project 수준의 Gradle 파일을 아래와 같이 수정해야 합니다.
allprojects {
repositories {
jcenter()
maven { url "https://maven.google.com" }
}
}
참고 Url
댓글