在应用程序中导入com.google.firebase.database时出错

时间:2016-11-07 09:52:07

标签: android firebase firebase-realtime-database

我正在将Firebase与我的应用程序集成。为此,我在其中创建了一个帐户,然后在其中创建了一个应用程序。 我已经完成了所需的所有要求,并且还对android应用程序中的build.gradle文件进行了更改。

我正在关注此链接,并在此链接中执行所有要求。 http://www.androidhive.info/2016/10/android-working-with-firebase-realtime-database/

现在我已按如下方式设置数据库规则:

{
  "rules": {
    ".read": true,
    ".write": true
  }
}

现在,当我想创建一个User类并尝试此语句时: 导入com.google.firebase.database.DatabaseReference;

它给了我关于数据库类的错误。 我需要做什么,我可以轻松地在我的应用程序中导入它,然后使用Firebase提供的数据库服务。

我的Build.gradle

//顶级构建文件,您可以在其中添加所有子项目/模块共有的配置选项。

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.5.0'
        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()
    }
}

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

的build.gradle(应用型)

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "24.0.2"

    defaultConfig {
        applicationId "com.example.hsports.galleryusingimageswitcher"
        minSdkVersion 14
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.4.0'
    compile 'com.android.support:design:23.4.0'
}

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

1 个答案:

答案 0 :(得分:0)

您应该查看官方Firebase documentation

在那里,您可以看到需要将compile 'com.google.firebase:firebase-database:9.8.0'添加到您的应用级build.gradle,才能在Android中使用firebase数据库。