Android/이슈 처리

[Android] Could not resolve all files for configuration ':app:debugCompileClasspath'.

O_Gyong 2022. 12. 26.

Caused by: org.gradle.api.internal.artifacts.ivyservice.DefaultLenientConfiguration$ArtifactResolveException: Could not resolve all files for configuration ':app:debugCompileClasspath'.

 

에러가 발생했는데, build.gradle(Project) 파일에 jcenter() 를 추가하여 해결했다.

repositories {
    google()
    jcenter()
    mavenCentral()
}

댓글