在 android 工作室中找不到 'com.firebase:firebase-ui:0.2.0'

failed to find 'com.firebase:firebase-ui:0.2.0' in android studio

我想在我的 android 应用程序中使用 firebase UI,但是在 `android 中添加依赖项时它不断出现构建错误工作室 我在 https://github.com/firebase/FirebaseUI-Android#using-the-library-in-your-android-app 尝试了教程,并且 https://www.firebase.com/blog/2015-08-27-firebaseui-makes-mobile-easy.html 但两者都给我同样的错误

这是我的 build.gradle 文件

apply plugin: 'com.android.application'

android {
  compileSdkVersion 21
  buildToolsVersion '21.1.2'

  defaultConfig {
    applicationId "re.book.bookify"
    minSdkVersion 15
    targetSdkVersion 21
    versionCode 1
    versionName "1.0"
  }

  packagingOptions {
    exclude 'META-INF/LICENSE'
    exclude 'META-INF/LICENSE-FIREBASE.txt'
    exclude 'META-INF/NOTICE'
  }

  buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
  }
}

dependencies {
  compile fileTree(dir: 'libs', include: ['*.jar'])
  compile 'com.android.support:appcompat-v7:22.2.0'
  compile 'com.google.android.gms:play-services:7.5.0'
  compile 'com.github.shell-software:fab:1.1.2'
  compile 'com.github.shell-software:viewmover:1.1.0'
  compile 'com.github.shell-software:uitools:1.1.0'
  compile 'com.firebase:firebase-client-android:2.3.1+'
  compile 'com.firebase:firebase-ui:0.2.0'
}

请post你的build.gradle

将以下几行添加到底部的依赖项对象中:

compile 'com.firebase:firebase-client-android:2.3.1'
compile 'com.firebaseui:firebase-ui:0.2.0'

检查此说明

https://github.com/firebase/FirebaseUI-Android#using-the-library-in-your-android-app

谢谢 Frank van Puffelen,这正是问题所在。 在 https://www.firebase.com/blog/2015-08-27-firebaseui-makes-mobile-easy.html 给出的 gradle link 不正确, FirebaseUI 的 0.2 版本发布在 com.firebaseui 组中。所以 gradle link 是 compile 'com.firebaseui:firebase-ui:0.2.0'