프로그래밍 놀이터/안드로이드, Java
[android studio] Could not find lint-gradle-api.jar 해결 방법
돼지왕 왕돼지
2023. 1. 6. 15:34
반응형
-
jcenter 와 google 이 repositories 에 추가되었음에도..
아래와 같은 에러 메시지를 마딱뜨렸다.
Could not find lint-gradle-api.jar (com.android.tools.lint:lint-gradle-api:26.1.2). Searched in the following locations: https://jcenter.bintray.com/com/android/tools/lint/lint-gradle-api/26.1.2/lint-gradle-api-26.1.2.jar |
-
나의 순서는 아래와 같았다.
repositories{
jcenter()
google()
}
이를 아래와 같이 순서를 바꾸어주니 해결....
repositories{
google()
jcenter()
}
-
기존에는 잘 동작하던 것들이 왜 이렇게 되었는지는 정확히 모르겠다.
여러가지 추정을 할 수는 있는데.. 그것은 추정일 뿐이라 혼란을 야기할 수 있으니 생략..
여튼 해결되면 되었으니..?
끝.
반응형