[Android] Could not resolve all files for configuration ':app:debugCompileClasspath'. - Build Error
2023. 5. 30. 00:46
[# 2]…My DevelopStory
조금 업데이트가 몇년동안 안된 라이브러리를 적용하면서 나온 에러로 이 또한 간단하게 해결 할 수 있다. repositories { jcenter() } 이제 지원이 끝난 Deprecated된 Jcenter()을 추가해준다. 이래도 될 수 있지만 혹시 다른 에러가 또 발생한다면 그 또한 아마도 아래와 같이 간단하게 해결할 수 있을 것이다. android.enableJetifier=true gradle.properties(Project Properties) 에 "android.enableJetifier = true"을 추가하면 해결이 될 것이다.