안드로이드 개발자의 창고
[안드로이드 스튜디오] Cannot access 'android.viewbinding.ViewBinding' which is a supertype of ... Check your module classpath for missing or conflicting dependencies 오류 해결 방법 본문
오류 해결
[안드로이드 스튜디오] Cannot access 'android.viewbinding.ViewBinding' which is a supertype of ... Check your module classpath for missing or conflicting dependencies 오류 해결 방법
Wise-99 2023. 7. 5. 18:20✔️ 오류 내용
프로젝트 명 바꾸려다가 길지 않은 코드라 그냥 복붙했는데 발생한 오류이다.
viewBinding을 인식하지 못하고 있다.
run이고 button이고 textView고 다 인식을 못하고 있다...
✔️ 해결 방법
build.gradle(:app) 파일의 dependencies{ ... }에 다음 코드 추가
implementation 'com.android.databinding:viewbinding:8.0.2'
오류가 없어지고 앱도 정상 작동한다!