No support repository in SDK

Tried to add constraint layout to my build file for Android. All roads pointed to adding the support repository, however, there was no support repo. Added, instead, maven to my build, changed to implement, and all was well.

repositories {
    maven {
        url 'https://maven.google.com'
    }
}