Android 개발 Warning과 Error
- Android ConstraintLayout
layout_behavior 오류
Gradle 코드 추가
새로운 프로젝트를 개발하다보면
가끔 Gradle 파일에 implementation을 빼먹는 경우가 있다.
implementation을 제대로 안 한 상태에서
안드로이드 ConstratintLayout을 쓸 때
(androidx.constraintlayout.widget.ConstraintLayout)
layout_behavior를 사용하면
(예를 들어 app:layout_behavior="@string/appbar_scrolling_view_behavior")
xml 파일 상으로는 오류가 표시되지 않지만
빌드를 해보면 에러가 발생한다.
AAPT: error: attribute layout_behavior (aka com.example.myapplication:layout_behavior) not found.
(com.example.myapplication은 본인 프로젝트 경로)
App 수준 Gradle 파일에 다음 코드를 추가해보자.
implementation 'com.google.android.material:material:1.2.1'
본 포스팅과 동일한 오류가 맞다면
문제 없이 해결될 것이다.
댓글