我正在尝试使用this ProgressWheel librery,但在运行proyect后我遇到了这个错误。
错误:任务':app:processDebugManifest'执行失败。
清单合并失败:来自AndroidManifest.xml的属性应用程序@ theme value =(@ style / AppTheme):11:9-40也是 出席[com.github.Todd-Davies:ProgressWheel:1.2] AndroidManifest.xml:13:9-56 value =(@ android:style / Theme.NoTitleBar)。 建议:添加'tools:replace =“android:theme”'来 AndroidManifest.xml中的元素:5:5-23:19以覆盖。
这是我的清单
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.anda.soft.apppresentation">
<application
android:name=".di.App"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".ui.activities.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<meta-data
android:name="io.fabric.ApiKey"
android:value="xxxxxxxxxxxxxxx"
/>
</application>
<uses-permission android:name="android.permission.INTERNET" />
</manifest>
和我的style.xml
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
</resources>
关于如何解决它的任何想法?
答案 0 :(得分:10)
关于如何解决它的任何想法?
按照错误消息中给出的说明进行操作:
建议:在AndroidManifest.xml:5:5-23:19中添加'tools:replace =“android:theme”'元素以覆盖。
换句话说,将tools:replace="android:theme"
添加到您的<application>
元素。
或者,切换到其他库。
答案 1 :(得分:4)
https://github.com/sawankumarbundelkhandi/edge_detection/issues/12#issuecomment-669854455
经过大量搜索,我发现这个解决方案有效,实际上,他和其他人告诉添加的一样
将这两行android:theme="@style/AppTheme"
和tools:replace="android:theme"
添加到application
标签
另外,将这行 xmlns:tools="http://schemas.android.com/tools"
也添加到根清单标签
这是完整的代码
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.doitcare.app"
xmlns:tools="http://schemas.android.com/tools">
<application
tools:replace="android:theme"
android:theme="@style/AppTheme"
...>
<activity
...
</activity>
</application>
</manifest>