Error: Attribute application@label value=(@string/appname) from AndroidManifest

NathansLiu發表於2017-12-18

這是因為Library專案中也定義了與主專案相同的屬性,就會導致合併失敗,比如都預設生成的android:label="@string/app_name" 或者 android:icon="@drawable/icon_logo"

Error:	Attribute application@label value=(@string/appname) from AndroidManifest

紅框中加入衝突的標籤就可以解決問題

tools:replace="android:icon, android:theme , android:label"
複製程式碼



Error:	Attribute application@label value=(@string/appname) from AndroidManifest


相關文章