I notice that I can comment out implementation 'androidx.constraintlayout:constraintlayout:2.0.4' without any errors though I use ConstraintLayout in my app.
dependencies {
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.material:material:1.3.0'
// implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'androidx.navigation:navigation-fragment:2.3.3'
}
Why is it ok? Does the com.google.android.material library also contain constraintLayout?