투케이2K

208. (TWOK/ERROR) [Android] ClassNotFoundException android.support.constraint.ConstraintLayout 본문

투케이2K 에러관리

208. (TWOK/ERROR) [Android] ClassNotFoundException android.support.constraint.ConstraintLayout

투케이2K 2024. 1. 11. 19:59

[환경 설정 및 설명]

프로그램 : AndroidStudio

설 명 : [Android] ClassNotFoundException android.support.constraint.ConstraintLayout

 

[에러 원인]

1. 예전 프로젝트 수정 위해 빌드 수행 시 xml layout 파일에 ConstraintLayout 이 기존 android 로 설정되어 있어 발생하는 이슈

 

[해결 방법]

1. xml layout 레이아웃 파일에서 android.support.constraint.ConstraintLayout 레이아웃을 androidx 로 변경 실시

>> 이전 : android.support.constraint.ConstraintLayout

>> 변경 : androidx.constraintlayout.widget.ConstraintLayout


 

반응형
Comments