AppCompat is a set of support libraries which can be used to make the apps developed with newer versions to work with older versions.In your case AppCompat is there to support version 23
my advice is to design your gradle like this:
ext {
supportLibVersion = '27.0.1' //this should be the latest published version
}
compile "com.android.support:appcompat-v7:${supportLibVersion}"
compile "com.android.support:design:${supportLibVersion}"
compile "com.android.support:palette-v7:${supportLibVersion}"
compile "com.android.support:customtabs:${supportLibVersion}"
compile "com.android.support:gridlayout-v7:${supportLibVersion}"