minSdk 版本错误

Error with minSdk version

我正在尝试支持 Android 4.0 设备。
我不断收到以下错误。

我该如何修复它们?

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\app\ build\intermediates\exploded-aar\com.github.mark-dlc\RadioPlayerServiceb5de0\AndroidManifest.xml

Suggestion: use tools:overrideLibrary="co.mobiwise.library" to force usage

您的 RadioPlayerService 将无法在小于 API 16

的设备上运行

minSdkVersion cannot be smaller than version 16 declared in library com.github.mark-dlc:RadioPlayerService

选项:

  1. 寻找新图书馆
  2. 删除那个库
  3. 按照消息中的建议"use tools:overrideLibrary="co.mobiwise.library" to force usage",祈祷它能起作用(虽然可能不会起作用)

尝试更改 build.gradle 文件 minSdkVersion 14 targetSdkVersion 14

希望对您有所帮助。