gpt4 book ai didi

android - 错误 :Execution failed for task ':app:processDebugAndroidTestManifest'

转载 作者:行者123 更新时间:2023-11-29 15:37:40 27 4
gpt4 key购买 nike

这是我将 buildToolsVersion 从 26.0.1 更新到 26.0.2 时发生的情况。

Error:Execution failed for task ':all:processDebugAndroidTestManifest'. Manifest merger failed : Attribute meta-data#android.support.VERSION@value value=(26.0.2) from [com.android.support:cardview-v7:26.0.2] AndroidManifest.xml:25:13-35 is also present at [com.android.support:support-v13:26.0.1] AndroidManifest.xml:28:13-35 value=(26.0.1). Suggestion: add 'tools:replace="android:value"' to element at manifestMerger8124076249449477164.xml:23:9-25:38 to override.

但我没有将support-v13:26.0.1 库 添加到我的项目中!!

我尝试将 tools:replace="android:value" 添加到 list 中,然后清理 - 重建,没有任何改变。

build.gradle:

dependencies { 
compile 'com.android.support:appcompat-v7:26.0.+'
compile 'com.android.support:design:26.0.+'
compile 'com.android.support:cardview-v7:26.0.+'
compile 'com.android.support:recyclerview-v7:26.0.+'
compile 'cn.pedant.sweetalert:library:1.3'
compile 'com.nineoldandroids:library:2.4.0'
compile 'com.daimajia.easing:library:1.0.1@aar'
compile 'com.daimajia.androidanimations:library:1.1.3@aar'
compile 'com.google.code.gson:gson:2.8.2'
compile 'com.wdullaer:materialdatetimepicker:3.3.0'
}

最佳答案

您可以通过在您的自己的 list 的元数据标记中添加tools:replace="android:value" 来覆盖应用程序依赖 list 之间的冲突, 并指定您要使用的值。

<meta-data
android:name="android.support.VERSION"
android:value="26.0.2"
tools:replace="android:value" />

P.S:如果您还没有元数据标签,您应该将其添加到您的 AndroidManifest.xml 中的应用程序标签中

关于android - 错误 :Execution failed for task ':app:processDebugAndroidTestManifest' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46500715/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com