Как исправить Manifest слияние не удалось

Я импортировал проект GoogleMapsV2WithActionBarSherlock eclipse и обнаружил

Ошибка: не удалось выполнить задачу ':googleMapsV2:processDebugManifest'. Не удалось объединить манифест: атрибут meta-data#com.google.android.gms.version@value value=() из [GoogleMapsV2WithActionBarSherlock:androidmapsutils: не указан] AndroidManifest.xml:8:13-29 также присутствует в [com.google.android.gms:play-services-basement:11.0.2] AndroidManifest.xml:20:66-119 value=(@integer/google_play_services_version). Предложение: добавьте 'tools:replace="android:value"' к элементу в AndroidManifest.xml:6:9-8:32, чтобы переопределить.

Кто-нибудь имеет представление о том, что это такое и как я могу это исправить?

Вот список ошибок.

googleMapsV2 build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    buildToolsVersion "26.0.0"

    defaultConfig {
        applicationId "com.ecs.google.maps.v2.actionbarsherlock"
        minSdkVersion 14
        targetSdkVersion 17
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
}

dependencies {
    compile project(':androidmapsutils')
    compile project(':library')
    compile 'com.google.code.gson:gson:2.1'
    compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar'
    compile 'com.android.support:support-v4:18.0.0'
    compile 'com.android.support:gridlayout-v7:18.0.0'
    compile 'com.google.android.gms:play-services:+'
    compile files('libs/commons-logging-1.1.1.jar')
    compile files('libs/google-http-client-1.15.0-rc.jar')
    compile files('libs/google-http-client-android-1.15.0-rc.jar')
    compile files('libs/google-http-client-jackson2-1.15.0-rc.jar')
    compile files('libs/httpclient-4.0.1.jar')
    compile files('libs/httpcore-4.0.1.jar')
    compile files('libs/jackson-core-2.1.3.jar')
    compile files('libs/jackson-core-asl-1.9.11.jar')
}

androidmaputils build.gradle

apply plugin: 'com.android.library'

android {
    compileSdkVersion 26
    buildToolsVersion "26.0.0"

    defaultConfig {
        compileOptions {
            sourceCompatibility JavaVersion.VERSION_1_7
            targetCompatibility JavaVersion.VERSION_1_7
        }
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
}

dependencies {
    compile 'com.android.support:support-v4:21.0.0'
    compile 'com.google.android.gms:play-services-maps:11.0.2'
}

GoogleMapsV2WithActionBarSherlock build.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.2.0'
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

PagerTabSlidingTabStrip build.gradle

apply plugin: 'com.android.library'

android {
    compileSdkVersion 17
    buildToolsVersion "26.0.0"

    defaultConfig {
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
}

dependencies {
    compile 'com.android.support:support-v4:18.0.0'
}

2 ответа

Решение

Проверьте свой build.gradle(приложение) minSdkVersion 14 а также

compile 'com.google.android.gms:play-services-maps:11.0.2'

Добавлять tools:replace="android:value" в вашем манифесте до конца <application> тег

Другие вопросы по тегам