使用minSdkVersion 7

时间:2015-01-25 08:25:09

标签: java android-studio google-admin-sdk

我需要在我的应用中使用这段代码:

//compile 'com.google.android.gms:play-services:6.+'

但我还需要minSdkVersion为7,而且不起作用。 错误:

Error:Execution failed for task ':app:processDebugManifest'.
> Manifest merger failed : uses-sdk:minSdkVersion 7 cannot be smaller than version 9 declared in library com.google.android.gms:play-services:6.1.71

这是我的Gradle的内容:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 21
    buildToolsVersion "21.1.2"

    defaultConfig {
        applicationId "codificador.aplicacion.safrapp.codificadorandroid"
        minSdkVersion 7
        targetSdkVersion 21
        versionCode 1
        versionName "1.0.0"
    }
    buildTypes {
        release {
            runProguard false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:21.0.0'
    //compile 'com.google.android.gms:play-services:6.+'
}

是否有较小版本的编译'com.google.android.gms:play-services?, 因为这是导致我错误的原因。

更新: 我将其更改为compile 'com.google.android.gms:play-services:5.0.89' 新错误:

Error:Execution failed for task ':app:processDebugManifest'.
> Manifest merger failed : uses-sdk:minSdkVersion 7 cannot be smaller than version 9 declared in library com.google.android.gms:play-services:5.0.89

1 个答案:

答案 0 :(得分:1)

最后了解你的问题。 Google Play Services及以上版本支持 Android 2.3.3 。请:

compile 'com.google.android.gms:play-services:6.1.71' // or 6.1.+

compile 'com.google.android.gms:play-services:5.0.89' 

并设置minSdkVersion 15。我希望它对你有很大的帮助