【发布时间】:2017-07-30 08:04:18
【问题描述】:
错误:任务 ':app:processDebugManifest' 执行失败。 清单合并失败:来自 [com.android.support:cardview-v7:25.3.1] AndroidManifest.xml:24:9-31 的属性 meta-data#android.support.VERSION@value value=(25.3.1) 也存在于 [com.android.support:appcompat-v7:26.0.0-alpha1] AndroidManifest.xml:27:9-38 value=(26.0.0-alpha1)。 建议:将 'tools:replace="android:value"' 添加到 AndroidManifest.xml:22:5-24:34 的元素以覆盖。
我正在尝试制作一个目标 SDK 为 26 的应用程序。 该应用程序需要 Facebook SDK(根据 Facebook SDK Versions 的最新版本 4.25.0。
Volley 是 1.0.0 版 (Android Volley Dev Page)
我只能从错误中猜测其中一些 SDK 共享库,但一个将不同的版本加载到另一个...所以我需要在我的 Gradle 文件中添加某种形式的“加载这个而不是这个”命令?还是我只是错过了什么?
上述错误发生在我的 Gradle 构建文件中,如下所示。
项目 Gradle 构建:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
应用 gradle 构建:
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "26.0.1"
defaultConfig {
applicationId "com.example.johnny.fibre"
minSdkVersion 18
targetSdkVersion 26
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(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.facebook.android:facebook-android-sdk:4.25.0'
compile 'com.android.support:appcompat-v7:26.+'
//compile "com.android.support:support-core-utils:25.+"
compile 'com.android.volley:volley:1.0.0'
//compile 'com.android.support:support-v4:26.0.0'
testCompile 'junit:junit:4.12'
}
我的 AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.johnny.fibre">
<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/Theme.AppCompat.DayNight.NoActionBar">
<uses-permission android:name="android.permission.INTERNET"/>
<activity android:name=".Home">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<meta-data android:name="com.facebook.sdk.ApplicationId"
android:value="@string/facebook_app_id"/>
<activity android:name="com.facebook.FacebookActivity"
android:configChanges=
"keyboard|keyboardHidden|screenLayout|screenSize|orientation"
android:label="@string/app_name" />
<activity
android:name="com.facebook.CustomTabActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="@string/fb_login_protocol_scheme" />
</intent-filter>
</activity>
</application>
</manifest>
感谢您的帮助!我一直在评论和更改 SDK 版本和各种...
【问题讨论】:
标签: android facebook gradle sdk manifest