I\'m having problems with Android Studio. I recently upgraded my SDK Manager to include;
compile \'com.android.support.constraint:constraint-layout:1.0.0-bet
It may be number of reasons
dependency version issue (same like above)
out-of-memory issue : In my case I was added the high resolution image for background of the constraint-layout or in the same page(.xml file) we used the high resolution image for any imageview source.
add to your app/build.gradle
dependencies {
...
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
...
}