Didn't find class "android.support.constraint.ConstraintLayout" on path: DexPathList
androidX 인지 뭣인지 ConstraintLayout의 package 경로가 바뀌었다.
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
build.gradle 에서 androidx. 으로 사용한다면
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
layout xml 파일에서도
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
와 같이 다른 package로 사용해야 한다.