Android Build错误[app:processDebugManifest]

时间:2018-06-23 15:32:46

标签: android android-studio

问题: 错误:任务':app:processDebugManifest'的执行失败。

  

清单合并失败:来自[com.android.support:appcompat-v7:25.4.0] AndroidManifest.xml:28:13-的属性meta-data#android.support.VERSION@value value =(25.4.0) [com.android.support:customtabs:26.1.0] AndroidManifest.xml:25:13-35 value =(26.1.0)也存在35。

按照Studio的建议,在AndroidManifest.xml:26:9-28:38的tools:replace="android:value"元素中添加<meta-data>以便覆盖。

它不起作用。

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="com.example.rahul.my_addmobdemo"
    tools:replace="26.1.0">

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

    <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=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

build.gradle文件:

    apply plugin: 'com.android.application'

    android {
        compileSdkVersion 25
        buildToolsVersion "26.0.0"
    defaultConfig {
        applicationId "com.example.rahul.my_addmobdemo"
        minSdkVersion 23
        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 {
        implementation fileTree(dir: 'libs', include: ['*.jar'])
    androidTestImplementation('com.android.support.test.espresso:espresso-core:3.0.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    //noinspection GradleCompatible
    implementation 'com.android.support:appcompat-v7:25.4.0'
    testImplementation 'junit:junit:4.12'
    implementation 'com.android.support.constraint:constraint-layout:1.1.2'
    //noinspection GradleCompatible
    implementation 'com.google.android.gms:play-services-ads:15.0.0'
}

3 个答案:

答案 0 :(得分:0)

您的问题是版本25与26之间的不兼容

请尝试

...
android {
    compileSdkVersion 26
    buildToolsVersion "26.0.0" //or 26.0.2 if required

    defaultConfig {
        ...
        targetSdkVersion 26
        ...
    }
}
...
dependencies {
   ...
   implementation 'com.android.support:appcompat-v7:26.0.2'
   ...
}

答案 1 :(得分:0)

像这样覆盖清单中的<application>标记以正确启用tools:replace函数

<application
    tools:replace="android:value"
    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">

答案 2 :(得分:0)

  

清单合并失败:来自[com.android.support:appcompat-v7:25.4.0] AndroidManifest.xml:28:13-的属性meta-data#android.support.VERSION@value value =(25.4.0) [com.android.support:customtabs:26.1.0] AndroidManifest.xml:25:13-35 value =(26.1.0)也存在35。

customtabs支持库是Google Play服务15的依赖项,因此您需要将其添加到依赖项块中。别忘了与支持库制作相同的版本:

dependencies {
    ...
    implementation 'com.android.support:appcompat-v7:26.1.0'
    // you can also remove this because it's automatically added
    // by Google play services dependency
    implementation 'com.android.support:customtabs:26.1.0'

    ...
    implementation 'com.google.android.gms:play-services-ads:15.0.0'
}

然后删除tools:replace="26.1.0",因为您不需要它。

之后,更新您的compileSdkVersionbuildToolsVersiontargetSdkVersion,并支持库以使用与版本26相同的版本。