This is the merging error.
How to solve it?
I assume you are using the latest version of play services. Google play services have stopped supporting sdk versions lower than 14. So, you have to set your minSdkVersion
to 14. To change that, you have to go to app gradle file, there inside defaultConfig
brace, set minSdkVersion
to 14. After that, sync gradle then build and run the project.
defaultConfig {
.....
minSdkVersion 14
targetSdkVersion 25
versionCode 1
versionName "1.0"
}
If you really need to set minSdkVersion
to 11 (or lower than 14), use previous versions of play services.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With