Paul Dew
Paul Dew

Reputation: 11

How to solve Execution failed for task ':app:processDebugManifest'

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

Upvotes: 1

Views: 143

Answers (2)

Faysal Ahmed
Faysal Ahmed

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

Ashvin solanki
Ashvin solanki

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

Related Questions