1

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:

The Error Here

Here are the gradle codes gradle

Paul Dew
  • 11
  • 2

2 Answers2

2

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"
    } 
Faysal Ahmed
  • 7,501
  • 5
  • 28
  • 50
1

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
       ....
    } 
Ashvin solanki
  • 4,802
  • 3
  • 25
  • 65
  • I've changed it then got this new error Error:(3) Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Borderless.Colored'. – Paul Dew Aug 14 '18 at 05:41