반응형
-
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()
}
-
기존에는 잘 동작하던 것들이 왜 이렇게 되었는지는 정확히 모르겠다.
여러가지 추정을 할 수는 있는데.. 그것은 추정일 뿐이라 혼란을 야기할 수 있으니 생략..
여튼 해결되면 되었으니..?
끝.
반응형
'프로그래밍 놀이터 > 안드로이드, Java' 카테고리의 다른 글
[android] android P 부터는 DNS 도 TLS 로 접근할 수 있다! (0) | 2023.01.08 |
---|---|
[android] Safe Browsing 에 대해 알아보자. (0) | 2023.01.07 |
[android] Runtime permission group 에 대한 이야기 (0) | 2022.12.31 |
[android] implicit broadcast - signature permission or FLAG_RECEIVVER_INCLUDE_BACKGROUND (0) | 2022.12.30 |
[android] StrictMode 에 대해 다시 한번 알아보자 (0) | 2022.12.29 |
댓글