在能够导入RecyclerView后弹出此错误消息。我找不到源头,也找不到解决方法。错误消息似乎也很难理解。
错误:任务“:app:ProcessDebugManifest”执行失败。清单合并失败:来自[com.android.support:AppCompat-V7:25.3.1]androidmanifest.xml:27:9-31的属性元数据#android.support.version@value value=(25.3.1)也出现在[com.android.support:RecyclerView-V7:26.0.0-alpha1]androidmanifest.xml:24:9-38 value=(26.0.0-alpha1)中。建议:将'tools:replace=“android:value”‘添加到AndroidManifest.xml:25:5-27:34处的元素以覆盖。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.me.listviewprojektfuerapp">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".ui.ListActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
Build.Gradle(模块:App):
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
defaultConfig {
applicationId "com.example.me.listviewprojektfuerapp"
minSdkVersion 16
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
compile 'com.android.support:recyclerview-v7:26.0.0-alpha1'
}
您正在使用com.android.support:appcompat-v7:25.3.1和com.android.support:recyclerview-v7:26.0.0-alpha1,recyclerview-v7:26.0.0-alpha1是appcompact库的一部分,因此会发生冲突,而且建议使用相同的库版本
如需更多参考,请访问https://developer.android.com/topic/libraries/support-library/features.html
错误:清单合并失败:[com.android.support:support-compat:28.0.0]AndroidManifest.xml:22:18-91中的属性application@AppComponentFactory value=(Android.support.v4.app.CoreComponentFactory)也出现在[AndroidX.Core:Core:1.0.0]An
错误:任务“:app:ProcessDebugManifest”执行失败。 清单合并失败:来自AndroidManifest.xml:13:9-42的属性application@icon value=(@mipmap/appiconnew)也存在于[com.pnikosis:materialish-progress:1.0]AndroidManifest.xml:13:9-45 value=(@d
我似乎得到了这样的错误:
我们想使用谷歌提供的最新的材料设计界面元素。因此,我在我们的项目gradle文件中添加了。但是从那以后,我得到了以下错误。 清单合并失败:属性application@appComponentFactory值=(androidx.core.app.CoreComponentFactory)来自[androidx.core:core:1.0.0-beta01]AndroidManifest。xml:2
问题内容: 嗨,我正在开发SDK,当我将这些SDK添加到应用程序Proyect中时,出现以下错误: 清单合并失败:[com.android.support:support-compat:28.0.0] AndroidManifest.xml:22:18-91的属性application @ appComponentFactory value =(android.support.v4.app.Cor
问题内容: 我正在将当前项目的大型应用程序移至Android Studio和Gradle中。我目前陷入以下问题: 我尝试将以下属性添加到主文件: 这些属性定义都不起作用。我究竟做错了什么? 问题答案: 试试看: 将此添加到 将此添加到 基于此,它应该覆盖所有元素。“将低优先级声明替换为带注释的声明。”