Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/215.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android 您应该通过DependencyResolution手动设置相同的版本_Android_Android Studio_Android Gradle Plugin - Fatal编程技术网

Android 您应该通过DependencyResolution手动设置相同的版本

Android 您应该通过DependencyResolution手动设置相同的版本,android,android-studio,android-gradle-plugin,Android,Android Studio,Android Gradle Plugin,错误:任务“:app:preDebugBuild”的执行失败 Android依赖项com.google.Android.gms:play services ads对于编译(11.8.0)和运行时(11.0.4)类路径有不同的版本。您应该通过DependencyResolution手动设置相同的版本 我的gradle项目: buildscript { repositories { jcenter() google() } dependenci

错误:任务“:app:preDebugBuild”的执行失败

Android依赖项com.google.Android.gms:play services ads对于编译(11.8.0)和运行时(11.0.4)类路径有不同的版本。您应该通过DependencyResolution手动设置相同的版本

我的gradle项目:

buildscript {
    repositories {
        jcenter()
        google()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'
        classpath 'com.google.gms:google-services:3.0.0'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
        google()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}
我的模块gradle:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion '26.0.2'
    defaultConfig {
        applicationId 'com.bezets.cityappar'
        minSdkVersion 16
        targetSdkVersion 25
        versionCode 4
        versionName '1.3.0'
        multiDexEnabled true
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    dexOptions {
        javaMaxHeapSize "2g"
    }
    packagingOptions {
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/LICENSE-FIREBASE.txt'
    }
    productFlavors {
    }

    lintOptions {
        disable 'InvalidPackage'
        abortOnError false
    }
}

repositories {
    mavenCentral()
}

dependencies {
    implementation 'com.google.android.gms:play-services-ads:11.8.0'
    implementation 'com.google.firebase:firebase-messaging:11.8.0'
    compile fileTree(include: ['*.jar'], dir: 'libs')
    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:25.3.1'
    compile 'com.android.support:design:25.3.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    compile 'com.android.support:recyclerview-v7:25.3.1'
    compile 'com.android.support:cardview-v7:25.3.1'
    compile 'com.android.support:palette-v7:25.3.1'
    compile 'com.jakewharton:butterknife:7.0.1'
    compile files('libs/volley.jar')
    compile 'com.android.support:multidex:1.0.1'
    compile 'com.google.firebase:firebase-core:11.0.4'
    compile 'com.google.firebase:firebase-database:11.0.4'
    compile 'com.google.firebase:firebase-storage:11.0.4'
    compile 'com.google.android.gms:play-services-auth:11.0.4'
    compile 'com.google.android.gms:play-services-maps:11.0.4'
    compile 'com.google.android.gms:play-services-location:11.0.4'
    compile 'com.google.maps.android:android-maps-utils:0.4'
    compile 'com.google.firebase:firebase-auth:11.0.4'
    compile 'com.google.firebase:firebase-crash:11.0.4'
    compile 'com.google.firebase:firebase-ads:11.0.4'
    compile 'com.squareup.retrofit:retrofit:1.9.0'
    compile 'com.squareup.okhttp:okhttp:2.3.0'
    compile 'com.squareup:otto:1.3.6'
    compile 'com.github.bumptech.glide:glide:3.7.0'
    compile 'uk.co.chrisjenx:calligraphy:2.2.0'
    compile 'com.nineoldandroids:library:2.4.0'
    compile 'com.github.paolorotolo:appintro:3.3.0'
    compile 'com.facebook.android:facebook-android-sdk:[4,5)'
    testCompile 'junit:junit:4.12'
}



apply plugin: 'com.google.gms.google-services'

如何修复此错误?

将所有谷歌/Firebase依赖项设置为相同版本11.8.0

请查看此 您可以通过以下两种方式之一解决问题:定义解决策略或在依赖项中包含有问题的版本。
希望这有帮助

我的错误和你的类似,用这些方法解决。 错误如下所示:

Android依赖项com.google.Android.gms:play services tasks对于compile(11.4.2)和runtime(15.0.1)类路径有不同的版本。您应该通过DependencyResolution手动设置相同的版本

然后在文件中:android/build.gradle, 我添加以下脚本:

    allprojects {
       ...

       configurations.all {
           resolutionStrategy.force "com.google.android.gms:play-services- 
           tasks:15.0.1"
        }

    }

错误:任务“”的执行失败:应用程序:preDebugBuild'>Android依赖项“com.google.firebase:firebase messaging:11.8.0”设置为compileOnly/provided,不受支持所有com.Android.support库必须使用完全相同的版本规范(混合版本可能导致运行时崩溃)。找到版本27.0.2、25.3.1。示例包括com.android.support:animated vector drawable:27.0.2和com.android.support:design:25.3.1更多。。。(Ctrl+F1)添加。。。编译'com.android.support:animated vector drawable:25.3.1'仍有错误:任务执行失败:应用程序:preDebugBuild'。>Android依赖项“com.google.firebase:firebase messaging:11.8.0”设置为compileOnly/provided,不受支持