1. 程式人生 > >Manifest merger failed with multiple errors, see logs -- Android Studio問題匯總

Manifest merger failed with multiple errors, see logs -- Android Studio問題匯總

存在 clas andro 作用 alt tar strong AR multipl

FAQ:
> Manifest merger failed with multiple errors, see logs


解決:

此問題產生原因大概有三個

# 第一,清單文件有錯,這種錯不會在編譯時指出來,當然as中還是可以看到的, 邊上的紅色就是了
技術分享圖片

# 第二,引入的三方包存在相同的label icon 等名字
解決:清單文件用tools manifest頭聲明tools作用域:
xmlns:tools="http://schemas.android.com/tools"
然後在application中用tools替代報錯的節點,如:
解決辦法是 到你的「processDebugManifest」module的Mainifest裏面加入這樣的語句:
    <application
        android:allowBackup="true"
        android:label="@string/app_name"
        tools:replace="label,allowBackup">

意思是如果merge manifest,就用別處的allowBackup和label值替換這裏的。

技術分享圖片
技術分享圖片

# 第三 也就是上面有人說的sdk版本沖突
解決:一種是修改targetSdkVersion 為一致或者不沖突
第二種,如果因為某些原因不能修改,在清單文件中強制合並

技術分享圖片

Manifest merger failed with multiple errors, see logs -- Android Studio問題匯總