0
votes

Error:Execution failed for task ':app:processDebugManifest'.

Manifest merger failed : uses-sdk:minSdkVersion 14 cannot be smaller than version 15 declared in library [com.android.support:customtabs:23.2.1] 2/app/build/intermediates/exploded-aar/com.android.support/customtabs/23.2.1/AndroidManifest.xml Suggestion: use tools:overrideLibrary="android.support.customtabs" to force usage

why this coming ?

this coming after updating to andorid studio 2.0

2
what is your minSdk ? if it is 14 change it to 16 and try. also update buildtool version to 2.0.0Kathi
i want it to supoort till 14andro

2 Answers

0
votes

add <uses-sdk tools:overrideLibrary="android.support.customtabs"/> to your manifest, And also include xmlns:tools="http://schemas.android.com/tools" in root of your manifest file like

enter image description here

0
votes

If you already have that tag tool:overrideLibrary="example library" and you need to use that for more than one, just separe with "," as this example:

<uses-sdk tools:overrideLibrary="com.example.lib1, com.example.lib2"/>