Tools: overrideLibrary not working

I am trying to override the minSDK of the library that I use in my gradle file. Below is the error message

Error:Execution failed for task ':app:processDebugManifest'. > Manifest merger failed : uses-sdk:minSdkVersion 10 cannot be smaller than version 13 declared in library [com.intuit.sdp:sdp-android:1.0.2] C:\Users\{User_Name}\{App_Name}\app\build\intermediates\exploded-aar\com.intuit.sdp\sdp-android\1.0.2\AndroidManifest.xml Suggestion: use tools:overrideLibrary="com.intuit.sdp" to force usage 

A quick google told me to use overrideLibrary in Mainfest. so I add the following lines to my AndroidManifest.xml

 <uses-sdk android:minSdkVersion="10" tools:overrideLibrary="com.intuit.sdp" /> 

Then I clean and rebuild the project, but it still shows me the same error as before.

+6
source share

All Articles