首页 > 解决方案 > Android Firebase:依赖问题

问题描述

我尝试添加此依赖项...

    implementation 'com.google.android.gms:play-services-auth:16.0.0'

但它说:

    Could not resolve com.google.android.gms:play-services-auth:16.0.0.

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

    apply plugin: 'com.android.application'

    android {
        buildToolsVersion "27.0.3"
        compileSdkVersion 27
        defaultConfig {
            applicationId "com.example.newu.fireapp"
            minSdkVersion 15
            targetSdkVersion 27
            versionCode 1
            versionName "1.0"
            testInstrumentationRunner 
            "android.support.test.runner.AndroidJUnitRunner"
        }

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

    dependencies {
        implementation fileTree(dir: 'libs', include: ['*.jar'])
        implementation 'com.android.support.constraint:constraint layout:1.1.2'
        implementation 'com.firebase:firebase-client-android:2.5.0'
        implementation 'com.google.firebase:firebase-core:16.0.1'
        implementation 'com.google.firebase:firebase-database:16.0.1'
        implementation 'com.google.firebase:firebase-auth:16.0.2'
        implementation 'com.firebaseui:firebase-ui-database:1.1.1'
        implementation 'com.google.firebase:firebase-storage:16.0.1'
        implementation 'com.google.firebase:firebase-messaging:17.3.0'
        implementation 'com.android.support:appcompat-v7:27.1.1'
        implementation 'com.android.support:customtabs:27.1.1'
        implementation 'com.squareup.picasso:picasso:2.71828'
        implementation 'com.android.support:recyclerview-v7:27.1.1'
        implementation 'com.android.support:design:27.1.1'
        implementation 'com.android.support:cardview-v7:21.+'
        implementation 'com.android.support:recyclerview-v7:21.+'
        implementation 'com.google.android.gms:play-services-auth:16.0.0'
        testImplementation 'junit:junit:4.12'
        androidTestImplementation 'com.android.support.test:runner:1.0.2'
        androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    }
    apply plugin: 'com.google.gms.google-services'

这是我的顶级构建文件:

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

    buildscript {

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


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


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

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

标签: androidfirebase

解决方案


尝试添加这个库

    implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'

implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'

//firebase stuff
implementation 'com.google.firebase:firebase-database:11.8.0'
implementation 'com.google.firebase:firebase-storage:11.8.0'
implementation 'com.google.firebase:firebase-auth:11.8.0'
implementation 'com.google.firebase:firebase-messaging:11.8.0'
implementation 'com.google.firebase:firebase-core:11.8.0'

//Google Play Services
implementation 'com.google.firebase:firebase-core:11.8.0'

推荐阅读