将实时数据库添加到Android Studio上的我的应用中-无法解决:firebase-database-15.0.0

时间:2018-07-28 01:28:08

标签: android firebase

我一直在使用Firebase来访问我的项目中的活动。一切正常,没有编译错误。但是,在转到“工具”>“ firebase”之后,我可以轻松连接到我的应用程序,但是当我尝试单击“添加实时数据库”时,它将显示以下信息:

build.gradle will include these new dependencies:
    compile 'com.google.firebase:firebase-database:16.0.1:15.0.0'

由于不建议使用编译功能,因此我会使用实现,并且当我这样做时

  

实施'com.google.firebase:firebase-database:16.0.1:15.0.0'

我得到以下错误无法解决:firebase-database-15.0.0

我的同步失败。

2 个答案:

答案 0 :(得分:1)

Root Gradle 更改为

buildscript {
    // ...
    dependencies {
        // ...
        classpath 'com.google.gms:google-services:4.0.1' // google-services plugin
    }
}

allprojects {
    // ...
    repositories {
        // ...
        google() // Google's Maven repository
    }
}

App Gradle

apply plugin: 'com.android.application'

android {
  // ...
}

dependencies {
  // ...
  implementation 'com.google.firebase:firebase-core:16.0.1'
  implementation 'com.google.firebase:firebase-database:16.0.1'

  // Getting a "Could not find" error? Make sure you have
  // added the Google maven respository to your root build.gradle
}

// ADD THIS AT THE BOTTOM
apply plugin: 'com.google.gms.google-services'

希望这对您有帮助

答案 1 :(得分:0)

在项目级gradle中添加jcenter()

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

并保持@Tomin B所说。