Notice
Recent Posts
Recent Comments
Tags
- 말줄임표시
- ViewBag
- javascript redirection
- javascript 바코드 생성
- django 엑셀불러오기
- SSD 복사
- 파일업로드 유효성체크
- XSS PHP
- 파일업로드 체크
- javascript 바코드스캔
- 타임피커
- asp.net dropdownlist
- asp.net core Select
- 하드 마이그레이션
- 하드 윈도우 복사
- TempData
- XSS방어
- javascript 유효성체크
- 바코드 스캔하기
- Mac Oracle
- jquery 바코드생성
- 바코드 생성하기
- ASP.Net Core 404
- ViewData
- 맥 오라클설치
- jquery 바코드
- 강제이동
- asp.net Select
- php 캐쉬제거
- 404에러페이지
웹개발자의 기지개
[안드로이드] Could not determine the dependencies of task ':app:lintVitalRelease' Gradle 버전 안맞는 에러 수정 본문
안드로이드
[안드로이드] Could not determine the dependencies of task ':app:lintVitalRelease' Gradle 버전 안맞는 에러 수정
http://portfolio.wonpaper.net 2023. 7. 6. 13:37에러메세지
필자의 Gradle 정보
[에러메세지]
Could not determine the dependencies of task ':app:lintVitalRelease'.
> Could not resolve all artifacts for configuration ':app:debugAndroidTestCompileClasspath'.
> Could not find androidx.appcompat:appcompat:1.1.1.
Required by:
project :app
> Could not find androidx.appcompat:appcompat:1.1.1.
Required by:
project :app > com.google.android.material:material:1.1.0
Possible solution:
- Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html
> Could not resolve all artifacts for configuration ':app:debugAndroidTestCompileClasspath'.
> Could not find androidx.appcompat:appcompat:1.1.1.
Required by:
project :app
> Could not find androidx.appcompat:appcompat:1.1.1.
Required by:
project :app > com.google.android.material:material:1.1.0
Possible solution:
- Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html
[해결책]
위의 에러 메세지는 버전 정보가 서로맞지 않았다.
Gradle 소스에서
implementation 'androidx.appcompat:appcompat:1.1.1'
implementation 'com.google.android.material:material:1.1.0'
에서
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'com.google.android.material:material:1.1.0'
으로 버전 수정함
'안드로이드' 카테고리의 다른 글
Comments