Reputation: 11
I keep getting this error everytime I try to build. Any solutions? I have tried searching up countless options but have achieved nothing.
The error I faced:
Here are the gradle codes gradle
Upvotes: 1
Views: 143
Reputation: 7669
Google play services have stopped supporting SDK versions lower than 14. So, you have to set your minSdkVersion to 14.
In defaultConfig
set the minimum SDK 14
for using play-service.
Like this:
defaultConfig {
.....
minSdkVersion 14
targetSdkVersion 25
versionCode 1
versionName "1.0"
}
Upvotes: 2
Reputation: 4809
com.google.gms:play-services:11.0.1
uses minimum
SDK 14 and you Used minimum SDK 11 so Change it
defaultConfig {
.....
//minSdkVersion 11 to
minSdkVersion 14
....
}
Upvotes: 0