작성
·
837
0
Cannot access 'androidx.databinding.Observable' which is a supertype of 'com.example.affiliates_android.databinding.ActivityMainBinding'. Check your module classpath for missing or conflicting dependencies
라는 에러가 뜹니다.
답변 1
0
저는 처음보는 에러인데 스택오버플로우에는 이미 질문을 올린 사람이 있네요. 몇가지 시험해 볼 항목들이 있는 듯 합니다.
메뉴의 File -> Invalidate Cache / Restart 해 보고 같은 증상이 반복되는지 확인
build.gradle에 데이터바인딩 추가했는지 확인
android {
- buildFeatures.viewBinding true
+ buildFeatures.dataBinding true
}
xml에 사용한 패키지이름이 대문자로 시작되지 않는지 확인
위의 것들을 확인해 보시고도 안되면 제 깃헙 코드와 비교해서 다른 부분이 있는지도 확인 부탁드립니다.