编译'com.firebaseui:firebase-ui:0.4.3如何修复错误。我得到任何firebase ui依赖项的错误

时间:2017-04-19 09:11:42

标签: android android-gradle build.gradle javac firebaseui

  

错误:任务':app:compileDebugJavaWithJavac'的执行失败。   编译失败;请参阅编译器错误输出以获取有关如何解决此错误的详细信息,请与我联系

我的build.gradle

apply plugin: 'com.android application'

android {
    compileSdkVersion 25
    buildToolsVersion '25.0.2'
    defaultConfig {
        applicationId "com.example.mayur.mahadev"
        minSdkVersion 22
        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'
        }
    }
    packagingOptions {
        exclude 'META-INF/DEPENDENCIES'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/NOTICE.txt'
    }

}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    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.constraint:constraint-layout:1.0.2'
    compile 'com.firebase:firebase-client-android:2.5.2'
    compile 'com.firebaseui:firebase-ui:0.4.3'
    compile 'com.google.firebase:firebase-database:10.0.1'
    testCompile 'junit:junit:4.12'
}


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

如何修复此错误请帮助我

2 个答案:

答案 0 :(得分:2)

您正在使用:

compile 'com.firebaseui:firebase-ui:0.4.3'
compile 'com.google.firebase:firebase-database:10.0.1'

如上所述in the documentation:

  

每个版本的FirebaseUI都依赖于这些库的固定版本,在common/constants.gradle中定义为变量firebase_version。如果您在compile 'com.google.firebase:firebase-*:x.y.z'compile 'com.google.android.gms:play-services-*:x.y.z' 表单的应用中使用任何依赖项,则需要确保使用所选版本的FirebaseUI所需的版本。 < / p>

FirebaseUI Version  Firebase/Play Services Version
1.2.0               10.2.0
1.1.1               10.0.0 or 10.0.1
1.0.1               10.0.0 or 10.0.1
1.0.0               9.8.0
0.6.2               9.8.0
0.6.1               9.6.1
0.6.0               9.6.0
0.5.3               9.4.0
0.4.4               9.4.0
0.4.3               9.2.1

答案 1 :(得分:1)

如下更改您的build.gradle(project)文件:

allprojects {
    repositories {
        google()
        jcenter()
        maven { url 'https://maven.fabric.io/public' }
    }
}

希望您会找到解决方案。