Published 2023. 5. 30. 00:46
반응형
조금 업데이트가 몇년동안 안된 라이브러리를 적용하면서 나온 에러로 이 또한 간단하게 해결 할 수 있다.
repositories {
jcenter()
}
이제 지원이 끝난 Deprecated된 Jcenter()을 추가해준다.
이래도 될 수 있지만 혹시 다른 에러가 또 발생한다면 그 또한 아마도 아래와 같이 간단하게 해결할 수 있을 것이다.
android.enableJetifier=true
gradle.properties(Project Properties) 에 "android.enableJetifier = true"을 추가하면 해결이 될 것이다.
반응형
'[# 2]…My DevelopStory' 카테고리의 다른 글
[Android] Keyboard show/hide detect Listener Utile (0) | 2023.06.02 |
---|---|
[Flutter] Flutter의 미래 전망: 구글이 이끄는 크로스 플랫폼 앱 개발 혁신 (0) | 2023.06.01 |
[Android] open failed: EACCES (permission denied) (0) | 2023.05.27 |
[Android] Duplicate class kotlin.collections.jdk8.CollectionsJDK8Kt found in modules kotlin-stdlib-1.8.10 and kotlin-stdlib-jdk8-1.7.20 (0) | 2023.05.24 |
[Android] Hilt + Room + Flow 적용하기 (0) | 2023.05.24 |