Android 中的 Firebase:firestore 是未解析的参考

问题描述 投票:0回答:2

我刚刚开始学习Android,想要连接数据库。第一个选择是 Firebase。所有依赖项均已按照说明安装。但第一条指令失败了。该指令是通过在活动中编写此代码来添加实例。就我而言,活动是 MainActivity.kt

val db = Firebase.firestore

在这里,Android 告诉我 Firestore 是一个已解析的引用。我不知道为什么会发生这种情况。有人可以帮助我吗?

这是我的应用程序级别 build.gradle 文件:

plugins {
    id 'com.android.application'
    id 'kotlin-android'
    id 'com.google.gms.google-services'
}

android {
    compileSdk 31

    defaultConfig {
        applicationId "com.example.happybirthday"
        minSdk 19
        targetSdk 31
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    kotlinOptions {
        jvmTarget = '1.8'
    }
}

dependencies {

    implementation 'androidx.core:core-ktx:1.3.2'
    implementation 'androidx.appcompat:appcompat:1.2.0'
    implementation 'com.google.android.material:material:1.3.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
    testImplementation 'junit:junit:4.+'
    androidTestImplementation 'androidx.test.ext:junit:1.1.2'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
    implementation platform('com.google.firebase:firebase-bom:29.0.1')
    implementation 'com.google.firebase:firebase-analytics-ktx'
}

这是项目级别的build.gradle文件:

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
    repositories {
        google()
        mavenCentral()
    }
    dependencies {
        classpath "com.android.tools.build:gradle:7.0.3"
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.20"
        classpath 'com.google.gms:google-services:4.3.10'

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

task clean(type: Delete) {
    delete rootProject.buildDir
}
android firebase kotlin google-cloud-firestore
2个回答
4
投票

除了 BoM 依赖项之外,还能够使用 Cloud Firestore:

implementation platform('com.google.firebase:firebase-bom:29.0.1')

您还需要为 Kotlin 添加 Firestore 依赖项:

implementation 'com.google.firebase:firebase-firestore-ktx'

或者Java对应的:

implementation 'com.google.firebase:firebase-firestore'

此处所解释。没有它,它将无法工作,因此无法解决参考。


0
投票

首先,尝试上面给出的解决方案,如果它不起作用,然后clean项目并再次rebuild它。

构建 > 清理项目 > 重建项目。

© www.soinside.com 2019 - 2024. All rights reserved.