Gradle同步失败:在项目“应用”中,已解析的Google Play服务库依赖项依赖于另一个版本(例如“ [15.0.1]”

时间:2019-07-18 14:12:44

标签: java android firebase gradle google-cloud-firestore

我在我的项目中使用Firebase实时数据库。现在,我正在尝试添加Firestore。但是我得到了这个错误。

错误:http://prntscr.com/ogu339

我写了很多代码。这就是为什么我不想重新打开项目。当我使用实时数据库时,它给了我一个错误。我当时正在打开一个新项目。但是那时我的项目是空的。所以我直接打开了一个新项目。

在打开新项目之前,我需要解决它。 :(请帮助我。

App Gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.example.yagoozonfirebasejava"
        minSdkVersion 16
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    implementation('com.google.firebase:firebase-core:16.0.6') {
        exclude group: 'com.android.support', module: 'support-v4'
    }
    implementation 'com.google.firebase:firebase-auth:16.0.3'
    implementation 'com.google.firebase:firebase-database:16.0.2'
    implementation 'com.google.firebase:firebase-storage:16.0.2'
    implementation 'com.google.firebase:firebase-firestore:17.0.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation 'com.squareup.picasso:picasso:2.71828'
    implementation 'com.android.support:recyclerview-v7:28.0.0'

}

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

Module App Gradle

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        google()
        jcenter()

    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.0'
        classpath 'com.google.gms:google-services:4.2.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()

    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

1 个答案:

答案 0 :(得分:0)

第二天,我重新打开计算机。当我打开项目时,它没有出现任何错误,现在可以正常工作了。

但是我还没有编写Firestore代码。也许当我写它的时候,这是一个错误。我会在这里再写最后的情况。