2

这是我的应用程序 gradle 文件

apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "25.0.3"
defaultConfig {
    applicationId "com.fitness.perspactive"
    minSdkVersion 17
    targetSdkVersion 26
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
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:26.0.0-alpha1'
compile 'com.android.support:design:26.0.0-alpha1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.google.firebase:firebase-auth:10.2.1'
compile 'com.google.firebase:firebase-database:10.2.1'
compile 'com.google.firebase:firebase-firestore:10.2.1'
compile 'com.android.support:support-v4:26.0.0-alpha1'
testCompile 'junit:junit:4.12'
}
apply plugin: 'com.google.gms.google-services'

这是我的项目 gradle 文件

buildscript {
repositories {
    jcenter()
    maven {
        url "https://maven.google.com"
    }
}
dependencies {
    classpath 'com.android.tools.build:gradle:2.3.3'
    classpath 'com.google.gms:google-services:3.1.0'
}
}

allprojects {
repositories {
    jcenter()
    maven {
        url "https://maven.google.com"
    }
}
}

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

在我的应用程序中,我使用了 Firebase 实时数据库。后来,当我还尝试包含云 Firestore 时,它​​没有同步。

当我尝试同步它时,它显示:

无法解决:com.google.firebase:firebase-firestore:10.2.1

请有人帮助我。

4

2 回答 2

3

用于最近发布的 Cloud Firestore 测试版的正确版本是 11.4.2。您可以像这样声明对它的依赖:

compile 'com.google.firebase:firebase-firestore:11.4.2'

所有 Firebase 组件都应该是相同的版本,所以在你的情况下,这将是

compile 'com.google.firebase:firebase-auth:11.4.2'
compile 'com.google.firebase:firebase-database:11.4.2'
compile 'com.google.firebase:firebase-firestore:11.4.2'

确保您在 Android SDK 管理器中拥有最新的 Google 存储库,否则您也将无法找到此版本 :-)。

当您使用它时,您需要升级到最新的 google-services 插件,版本 3.1.1。

所有这些以及更多内容都记录在设置页面上。即使您有一个现有的支持 Firebase 的应用程序,也值得一步一步地检查您的项目是否拥有所有这些东西。

于 2017-10-06T23:04:56.640 回答
0

类路径 'com.google.gms:google-services:3.1.0' 确保您的 com.google.firebase:firebase-firestore:11.4.2 满足https://firebase.google.com/首选的相同版本文档/安卓/设置

于 2018-12-12T04:30:15.757 回答