본문 바로가기

Android/Android Error

cardUseCompatPadding' not found 에러

책 소스를 따라 치던 중 컴파일 시 이런 에러가 났다

cardUseCompatPadding' not found.


이 에러는 cardview를 쓰는데 지원하는 라이브러리를 모듈에 추가해주지 않았을 때 나타난다.

app 모듈 단에 있는 build.gradle에 다음 라인을 추가해 주면 해결이 된다.

implementation 'com.android.support:cardview-v7:27.1.1'