2017-08-14 145 views
-4

我試圖recyclerView添加到Android的依賴,但補充說,庫後產生這個錯誤清單合併失敗

Error:Execution failed for task ':app:processDebugManifest'. > Manifest merger failed : Attribute meta-data#[email protected] value=(25.3.1) from [com.android.support:appcompat-v7:25.3.1] AndroidManifest.xml:27:9-31 is also present at [com.android.support:recyclerview-v7:26.0.0-alpha1] AndroidManifest.xml:24:9-38 value=(26.0.0-alpha1). Suggestion: add 'tools:replace="android:value"' to element at AndroidManifest.xml:25:5-27:34 to override.

我已經通過項目結構

+0

show'manifest.xml' –

+0

錯誤:執行任務':app:processDebugManifest'失敗。 > Manifest合併失敗:屬性meta-data#[email protected] value =(25.3.1)from [com.android.support:appcompat-v7:25.3.1] AndroidManifest.xml:27:9-31 \t也出現在[com.android.support:recyclerview-v7:26.0.0-alpha1] AndroidManifest.xml:24:9-38 value =(26.0.0-alpha1)。 \t建議:在AndroidManifest.xml:25:5-27:34處添加'tools:replace =「android:value」'至元素以覆蓋。 –

+0

什麼是錯誤sar?先發好你的清單並記錄下來。 – sector11

回答

0

更改您的build.gradle添加它(應用程序)至

android { 
    compileSdkVersion 26 
    buildToolsVersion "26.0.1" 
    useLibrary 'org.apache.http.legacy' 
    defaultConfig { 
     applicationId "PACKAGE NAME" 
     minSdkVersion 15 
     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.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.+' 
    compile 'com.android.support:design:26.+' 
    compile 'com.android.support:support-v4:26.+' 
    testCompile 'junit:junit:4.12' 
} 
+0

他的錯誤是有關最maf標記覆蓋 data#[email protected]值=(25.3.1)如何解決我不知道 – sector11

+0

使用+不推薦 – sector11

+0

這對我的工作感謝。我將appcompact和recycleview的版本更改爲26. +並將編譯sdk的版本更改爲26,然後修復了錯誤 –

0

當您包含對具有不同版本號的多個庫或模塊的引用時,會發生此錯誤。所以保持同步所有觀點庫版本號

+0

你可以解釋更多 –

+0

你可以在這裏發佈你的build.gradle(從應用程序模塊)文件嗎? –

+0

無論哪種解決方案適用於您,請將其標記爲接受的答案。 –

0

請確保所有支持庫的版本是一樣的:

build.gradle項目層面不app/水平添加這些行

ext { 
    supportLibrary = '26.0.0' // your support library version goes here 
} 

,然後添加在那裏所有的Android依賴聲明這個給你項目級別:

implementation "com.android.support:appcompat-v7:${rootProject.supportLibrary}"

如果您使用的是某個元標記,則使AndroidManifest與此類似

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    package="my.supercool.app"> 


    <uses-permission android:name="android.permission.INTERNET" /> 
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> 
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> 

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

... 
</manifest> 

工具取代實際上解決了壓倒一切的元標籤值的錯誤消息。