안드로이드
[안드로이드] 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'
으로 버전 수정함