您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“Android Studio如何解決報(bào):“Attribute application@theme or @ icon ”錯(cuò)誤的問題”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“Android Studio如何解決報(bào):“Attribute application@theme or @ icon ”錯(cuò)誤的問題”這篇文章吧。
前言
Android Studio是Google開發(fā)的一款面向Android開發(fā)者的IDE,支持Windows、Mac、Linux等操作系統(tǒng),基于流行的Java語言集成開發(fā)環(huán)境IntelliJ搭建而成。
發(fā)現(xiàn)問題
最近在做項(xiàng)目的時(shí)候需要導(dǎo)入第三方庫時(shí)碰到這個(gè)問題
Error:Execution failed for task ':app:processDebugManifest'. > Manifest merger failed : Attribute application@theme value=(@style/AppTheme.NoActionBar) from AndroidManifest.xml:21:9-52is also present at [MyChaass:mymusic:unspecified] AndroidManifest.xml:17:9-40 value=(@style/AppTheme).Suggestion: add'tools:replace="android:theme"' to <application> element at AndroidManifest.xml:15:5-37:19 to override.
原因是我們的主項(xiàng)目中默認(rèn)會定義了 android:icon=""
,當(dāng)我們引入的第三方庫中也定義
了這種標(biāo)簽的時(shí)候,二者合并失敗就會出現(xiàn)此問題。
解決方法
解決辦法是在 <application>
標(biāo)簽中 添加 tools:replace="android:icon"
.
首先要在 <manifest>
標(biāo)簽中增加一個(gè) tools 的命名空間 :
xmlns:tools=http://schemas.android.com/tools
與此相同的問題還有 theme ,解決辦法同樣是增加 tools:replace="android:theme"
,
不過當(dāng)二者都合并失敗時(shí),中間應(yīng)該用","隔開 :
tools:replace="android:icon,android:theme"
manifest文件:
<application android:allowBackup="true" android:icon="@mipmap/christ_icon" android:label="@string/app_name" android:supportsRtl="true" android:name=".App" tools:replace="android:icon,android:theme" //加這句即可 android:theme="@style/AppTheme.NoActionBar"> </application>
增 加 以上代碼 即可解決問題。
以上是“Android Studio如何解決報(bào):“Attribute application@theme or @ icon ”錯(cuò)誤的問題”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。