2016-09-26 80 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

我認爲這是已經嘗試過,因此錯誤... –