База данных Firebase Recyclerview Adapter и Firebase UI - PullRequest
0 голосов
/ 22 января 2020

Я новичок в кодировании и обучении Android Студия через удемы и онлайн-видео. До сих пор у меня не было проблем.

Я использую Android 3.5.3. Я включил Androidx, когда начинал новый проект. Поскольку я использую FirebaseRecyclerviewAdapter в своем проекте, чтобы извлечь данные из базы данных и вывести их список. Но адаптер FBR не распознается в коде и показывает ошибку.

Поэтому я пытаюсь реализовать приведенную ниже зависимость поддержки

implementation 'com.firebaseui:firebase-ui-database:6.2.0'

Мне показывали следующие ошибки при синхронизации c build.gradle file

ОШИБКА: невозможно разрешить зависимость для ':app@debugUnitTest/compileClasspath': не удалось загрузить auto-value-annotations.jar (com.google.auto.value: auto-value-annotations: 1.6.5) ОШИБКА: невозможно разрешить зависимость для ':app@debugUnitTest/compileClasspath': не удалось загрузить firebase-ui-common.aar (com.firebaseui: firebase-ui-common: 6.1.0)

Пожалуйста, кто-нибудь подскажет мне, как реализовать вышеуказанную зависимость или как сделать FirebaseRecyclerviewAdapter распознанным в коде.

build.gradle (Модуль)

apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'

android {
    compileSdkVersion 29
    buildToolsVersion "29.0.2"
    defaultConfig {
        applicationId "com.example.vcred"
        minSdkVersion 18
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility = 1.8
        targetCompatibility = 1.8
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0'
    implementation 'com.google.firebase:firebase-auth:16.0.5'
    implementation 'com.google.firebase:firebase-database:16.0.4'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.ext:junit:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
    implementation 'androidx.cardview:cardview:1.0.0'
    implementation 'com.google.android.material:material:1.2.0-alpha03'
    implementation 'androidx.recyclerview:recyclerview:1.2.0-alpha01'

     implementation 'com.firebaseui:firebase-ui-database:6.2.0'
}

build.gradle (проект)

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        google()
        jcenter()


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

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

allprojects {
    repositories {
        google()
        jcenter()


    }
}

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

Кто-нибудь должен спасти меня от проблемы, с которой я сталкиваюсь и которую я не могу найти любое решение онлайн или на этом форуме тоже до сих пор. Надеюсь, я смогу завершить свой тестовый проект с помощью экспертов на этом форуме.

1 Ответ

0 голосов
/ 24 января 2020

Мне удалось разобраться в проблеме, и, наконец, зависимости были синхронизированы в файле build.gradle.

Зависимости в файле build.gradle приведены ниже.

implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'com.google.android.material:material:1.2.0-alpha03'
implementation 'androidx.recyclerview:recyclerview:1.2.0-alpha01'
implementation 'com.google.firebase:firebase-auth:19.2.0'
implementation 'com.google.firebase:firebase-database:19.2.0'
implementation 'com.firebaseui:firebase-ui-database:6.2.0'
...