How to solve this error?
Failed to resolve: com.google.android.gms:play-services:16.0.1
I have given my dependency screenshot here.please help me out..

How to solve this error?
Failed to resolve: com.google.android.gms:play-services:16.0.1
I have given my dependency screenshot here.please help me out..

You can check in the google maven repo
The last com.google.android.gms:play-services full-module is 12.0.1.
The dependency com.google.android.gms:play-services:16.0.1 doesn't exist.
Use only the single play-services components you need.
Add this to project build.gradle
buildscript {
repositories {
google()
jcenter()
mavenCentral()
}
}
dependencies {
classpath 'com.google.gms:google-services:4.0.1'
}
}