No resource identifier found for attribute ‘layout_constraintLeft_toLeftOf’ in package

ConstraintLayout is not part of AppCompat. It’s a standalone library.

Add the dependency in your build.gradle file

implementation 'com.android.support.constraint:constraint-layout:1.1.3' 

and click Sync now.

Leave a Comment