android上的firebase:身份验证和数据库,gradle同步错误

时间:2017-06-12 13:49:28

标签: android firebase firebase-realtime-database firebase-authentication

我编写了一个使用Firebase数据库功能的Android应用程序。一切正常,现在我想整合身份验证功能。所以我修改了我的build.gradle,让app包含了两个身份验证依赖项:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.2"
    defaultConfig {
        applicationId "com.example.gmeunier.gestiondepoints"
        minSdkVersion 23
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })

    compile 'com.android.support:appcompat-v7:25.3.1'
    compile 'com.android.support:support-v4:25.3.1'
    compile 'com.android.support:design:25.3.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.0-beta4'
    compile 'com.android.support:cardview-v7:25.3.1'
    compile 'com.google.android.gms:play-services-plus:10.2.6'
    compile 'com.google.firebase:firebase-database:10.2.6'

    compile 'com.firebaseui:firebase-ui-auth:1.2.0'
    compile 'com.google.firebase:firebase-auth:10.2.6'

    testCompile 'junit:junit:4.12'
}
apply plugin: 'com.google.gms.google-services'

尽管我在这个主题上付出了很多努力和研究,但在尝试同步这个gradle时仍然出现以下错误:

  

无法解决:com.twitter.sdk.android:twitter:2.3.0

我无法找到必须使用的lib / component版本,我将非常感谢您的帮助和支持。

2 个答案:

答案 0 :(得分:0)

您项目的gradle文件应如下所示。

buildscript {
    repositories {
        jcenter()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:2.2.3'
        classpath 'com.google.gms:google-services:3.0.0'
    }
}

allprojects {
    repositories {
        jcenter()

        // Required for 'com.firebaseui:firebase-ui:1.1.1'
        maven {
            url 'https://maven.fabric.io/public'
        }
    }
}

原始答案:https://stackoverflow.com/a/41664069/7339411

答案 1 :(得分:0)

将“repositories”内的“allprojects”和“buildscript”内的以下行添加到Project Level build.gradle文件中:

maven {
    url 'https://maven.fabric.io/public'
}