清单合并失败 - 支持:appcompat-v7:26。+

时间:2017-07-30 08:04:19

标签: android facebook gradle sdk manifest

  

错误:任务':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)。       建议:添加'工具:replace =" android:value"'到AndroidManifest.xml:22:5-24:34的元素覆盖。

我正在尝试制作目标SDK为26的应用。 该应用程序需要Facebook SDK(最新根据4.25.0的Facebook SDK Versions

Volley是版本1.0.0(Android Volley Dev Page

我只能从错误猜测这些SDK中的一些共享库但是一个版本加载另一个版本...所以我需要添加某种形式的"加载这个而不是这个"喜欢我的Gradle文件中的命令?或者我只是遗漏了什么?

上面显示的G​​radle Build文件出现上述错误。

Project Gradle Build:

// 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
}

App gradle build:

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版本和所有种类......

4 个答案:

答案 0 :(得分:5)

我通过进一步的论坛浏览解决了这个问题:

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.android.support:cardview-v7:26.0.0-alpha1'
    compile 'com.android.support:customtabs:26.0.0-alpha1'
    compile 'com.android.support:appcompat-v7:26.0.0-alpha1'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    testCompile 'junit:junit:4.12'
    compile 'com.facebook.android:facebook-android-sdk:[4,5)'


}

依赖项

com.android.support:cardview-v7:26.0.0-alpha1
compile 'com.android.support:customtabs:26.0.0-alpha1'

被添加似乎解决了这个问题。

答案 1 :(得分:3)

facebook sdk在其依赖项中使用'com.android.support:appcompat-v7:25.3.1''com.android.support:support-v4:25.3.1'

如果您从Facebook依赖关系中exclude support-v4如下所示,则会解决此错误:

compile (‘com.facebook.android:facebook-android-sdk:4.25.0’){
    exclude group: 'com.android.support', module: 'support-annotations'
}

或将其从您的依赖项中的compile 'com.android.support:appcompat-v7:26.+'中排除。

答案 2 :(得分:1)

从作为麻烦制造者的图书馆中排除依赖关系:-)让我们看一个例子:

implementation("com.jakewharton.rxbinding2:rxbinding:1.0.2") {
  exclude group: 'com.android.support'
}

您可以更具体地添加要排除的模块:

exclude group: 'com.android.support', module: 'appcompat-v7' 

答案 3 :(得分:0)

我已解决此问题,请在app文件夹中的build.gradle中更改以下编译文件。现在我正在使用这些编译文件。

compile 'com.android.support:cardview-v7:26.+'
compile 'com.android.support:customtabs:26.+'
compile 'com.android.support:appcompat-v7:26.+'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:recyclerview-v7:26.+'

在更改之前我正在使用这些文件

compile 'com.android.support:cardview-v7:26.0.0-alpha1'
compile 'com.android.support:customtabs:26.0.0-alpha1'
compile 'com.android.support:appcompat-v7:26.0.0-alpha1'

只需更改编译文件的版本。使用“26. +”而不是“26.0.0-alpha1”

由于