I am trying to support Android 4.0 devices.
I keep getting following errors.
How do I fix them?
Error:Execution failed for task ':app:processReleaseManifest'.
Manifest merger failed : uses-sdk:minSdkVersion 14 cannot be smaller than version 16 declared in library [com.github.mark-dlc:RadioPlayerService:88b5de0] C:\Users\Emmanuel\Documents\Android Development\xspace\3\app\ build\intermediates\exploded-aar\com.github.mark-dlc\RadioPlayerService\88b5de0\AndroidManifest.xml
Suggestion: use tools:overrideLibrary="co.mobiwise.library" to force usage
Your RadioPlayerService
will not work in devices less than API 16
minSdkVersion cannot be smaller than version 16 declared in library com.github.mark-dlc:RadioPlayerService
Options:
tools:overrideLibrary="co.mobiwise.library"
to force usage", and pray that it works (probably won't work, though)