반응형 Android Studio1 안드로이드 스튜디오 프로그래밍 에러 메세지 Couldn’t find com.android.tools.build:gradle:3.0.0안드로이드 스튜디오를 업데이트하고 난 후 "Couldn’t find com.android.tools.build:gradle:3.0.0" 에러 메세지가 뜨고 컴파일 안 될 때가 있다. 이 때는 build.gradle 파일에서 다음과 같이 "google()"을 추가하면 된다.buildscript { repositories { jcenter() google() } } allprojects { repositories { google() jcenter() }} 안드로이드 스튜디오를 업데이트 하면 이전 버전의 프로젝트가 바로 컴파일 되지 않는 경우가 많다. 안드로이드 스튜디오는 Visual Studio에 비해 사용.. 2019. 1. 27. 이전 1 다음 반응형