Error:Execution failed for task ':baseGameUtils:processDebugAndroidTestManifest'.
Manifest merger failed : uses-sdk:minSdkVersion 9 cannot be smaller than version 14 declared in library [com.google.android.gms:play-services-ads:11.0.4] C:\Users\nekos.android\build-cache\ac3e2c727e192cdc9e7fe0403f8315232b0e8024\output\AndroidManifest.xml Suggestion: use tools:overrideLibrary="com.google.android.gms.ads.impl" to force usage
minSdkVersion
is 14. Yours is 9. You need to either raise yourminSdkVersion
to 14 or use older versions of libraries likeplay-services-ads
. – CommonsWare10.0.1
is the last version of the support library to support Gingerbread. – Tim Cooke