Не удалось разрешить Firestore Android Studio - PullRequest
0 голосов
/ 04 февраля 2019

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

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

Уровень приложения Gradle:

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

android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "com.blindnews.kimh2.blindnews"
        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'])
//noinspection GradleCompatible
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:support-v4:27.1.1'
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'
implementation 'com.google.firebase:firebase-core:16.0.1'
implementation 'com.google.firebase:firebase-auth:16.0.1'
implementation 'com.google.firebase:firebase-firestore:16.0.1'
implementation 'com.google.android.gms:play-services-auth:15.0.1'
implementation 'de.hdodenhof:circleimageview:3.0.0'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support:recyclerview-v7:27.1.1'
implementation 'com.android.support:cardview-v7:27.1.1'

}

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

Ответы [ 2 ]

0 голосов
/ 04 февраля 2019

Прежде всего, проверьте последнюю версию зависимости.Может быть, вы добавите эту строку дважды, поэтому gradle не может решить эту проблему:

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

И добавьте путь к классам в файл gradle уровня вашего проекта

classpath 'com.google.gms:google-services:4.2.0'
0 голосов
/ 04 февраля 2019

Чтобы решить эту проблему, измените следующие строки кода:

implementation 'com.google.firebase:firebase-core:16.0.1'
implementation 'com.google.firebase:firebase-auth:16.0.1'
implementation 'com.google.firebase:firebase-firestore:16.0.1'
implementation 'com.google.android.gms:play-services-auth:15.0.1'

на

implementation 'com.google.firebase:firebase-core:16.0.6'
implementation 'com.google.firebase:firebase-auth:16.1.0'
implementation 'com.google.firebase:firebase-firestore:18.0.0'
implementation 'com.google.android.gms:play-services-auth:16.0.1'

В вашем файле верхнего уровня build.gradle убедитесь, что у вас последняя версияплагина Google Service:

classpath 'com.google.gms:google-services:4.2.0'
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...