ОШИБКА: не удалось разрешить: androidx.recycleview: recyclerview: 1.0.0 - PullRequest
0 голосов
/ 26 марта 2020

У меня есть комментарий об ошибке

ОШИБКА: не удалось разрешить: androidx.recycleview: recyclerview: 1.1.0 "и" ОШИБКА: не удалось разрешить: com.google.firebase: firebase-core: 19.3.0 ", как показано ниже;

ОШИБКА: не удалось разрешить: androidx.recycleview: recyclerview: 1.0.0

Добавить репозиторий Google Maven и syn c проект

Показать в диалоговом окне "Структура проекта"

Затронутые модули: приложение

ОШИБКА: не удалось разрешить: com.google.firebase: ядро ​​firebase: 19.3.0

Показать в структуре проекта диалоговое окно

Затронутые модули: приложение

Как я могу решить эти ошибки? Пожалуйста, сообщите.

build.gradle код указан ниже;

apply plugin: 'com.android.application'

android {
    compileSdkVersion 29
    buildToolsVersion "29.0.3"
    defaultConfig {
        applicationId "io.github.stack07142.firebase_photos"
        minSdkVersion 19
        targetSdkVersion 29
        versionCode 5
        versionName "1.4"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        vectorDrawables.useSupportLibrary = true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    dataBinding {

        enabled = true
    }
}

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


    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    implementation 'com.google.firebase:firebase-auth:19.3.0'
    implementation 'com.google.android.material:material:1.1.0'
    implementation 'com.google.android.gms:play-services-auth:17.0.0'
    implementation 'com.facebook.android:facebook-android-sdk:4.42.0'
    implementation 'com.google.firebase:firebase-storage:19.1.1'
    implementation 'com.google.firebase:firebase-database:19.2.1'
    implementation 'androidx.recycleview:recyclerview:1.1.0'
    implementation 'com.github.bumptech.glide:glide:4.11.0'
    implementation 'com.google.firebase:firebase-analytics:17.2.3'
    testImplementation 'junit:junit:4.13'
}
allprojects {
    repositories {
        maven{
            url 'https://maven.google.com'
        }
        jcenter()
        maven{url'http://maven.fabric.io/public'}
    }
}

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

1 Ответ

0 голосов
/ 26 марта 2020
   implementation 'androidx.recyclerview:recyclerview:1.1.0'
   implementation 'androidx.recycleview:recyclerview:1.1.0'
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...