当前位置:   article > 正文

关于Manifest merger failed_manifest merger failed : attribute framelayout@pac

manifest merger failed : attribute framelayout@package value=(com.example.my

我们在用Android studio在编译的过程中,有时候会遇到这样的error,但是,在日志中是提示给我们如何操作的了,如下:

Error:Execution failed for task ':app:processDebugManifest'.

> Manifest merger failed : Attribute application@icon value=(@mipmap/ic_launcher) from AndroidManifest.xml:7:9-43
is also present at [Testone:AutoScrollViewPagerlibrary:unspecified] AndroidManifest.xml:13:9-45 value=(@drawable/ic_launcher)

Suggestion: add 'tools:replace="android:icon"' to <application> element at AndroidManifest.xml:5:5-19:19 to override

但是具体该如何操作呢??好吧,我们写个小例子吧,上面也说了实在AndroidManifest.xml中去添加

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. package="com.example.administrator.testone" >
  5. <uses-permission android:name="android.permission.INTERNET"/>
  6. <application
  7. tools:replace="android:icon"
  8. android:allowBackup="true"
  9. android:icon="@mipmap/ic_launcher"
  10. android:label="@string/app_name"
  11. android:theme="@style/AppTheme" >
  12. <activity
  13. android:name=".MainActivity"
  14. android:label="@string/app_name" >
  15. <intent-filter>
  16. <action android:name="android.intent.action.MAIN" />
  17. <category android:name="android.intent.category.LAUNCHER" />
  18. </intent-filter>
  19. </activity>
  20. </application>
  21. </manifest>



声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/正经夜光杯/article/detail/824189
推荐阅读
相关标签
  

闽ICP备14008679号