任务执行失败':app:processDebugManifest'

时间:2017-03-22 12:28:38

标签: android

错误:任务':app:processDebugManifest'执行失败。

  

清单合并失败:来自AndroidManifest.xml的属性应用程序@ theme value =(@ style / Theme.ActionBarSize):24:9-51       也出现在[com.github.navasmdc:PhoneTutorial:1.2] AndroidManifest.xml:15:9-40 value =(@ style / AppTheme)。       建议:添加'工具:replace =" android:theme"'到AndroidManifest.xml:18:5-72:19的元素覆盖。

2 个答案:

答案 0 :(得分:1)

在清单文件中进行以下更改:

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme"
    tools:replace="android:theme">
</application>

只需添加此

即可
  

工具:替换=&#34;机器人:主题&#34;

在应用程序标记中。

答案 1 :(得分:0)

请检查应用主题的应用程序清单文件。 更多说明请在此处提供您的代码。