2016-09-26 90 views
0

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

我该如何解决它们?

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

回答

1

RadioPlayerService将不低于API 16

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

选项工作,设备少:

  1. 找到一个新的图书馆
  2. 删除库
  3. 按照建议的消息“使用tools:overrideLibrary="co.mobiwise.library"改变的build.gradle文件 minSdkVersion 14 targetSdkVersion 14

    希望这将有助于强制使用”,并祈祷,它的工作原理(可能不会正常工作,虽然)

+0

感谢这有助于。上帝保佑你 – eadjeikusi

-1

尝试。

+0

我认为这是已经尝试过,因此错误... –