ОШИБКА: не удалось разрешить: база данных firebase - PullRequest
0 голосов
/ 07 января 2020

enter image description here Я пытаюсь использовать firebase с моим приложением, и я выполнил все шаги, перечисленные на официальном сайте firebase, как добавить плагин google-service и продукты firebase в мои модуль и проект build.gradle, но я все еще получаю этот список ошибок:

1-ОШИБКА: не удалось разрешить: база данных firebase

2-ОШИБКА: не удалось разрешить: firebase-common

3-ОШИБКА: не удалось разрешить: firebase-database-collection

4-ОШИБКА: не удалось разрешить: support-annotations

вот мой проект: buidl.gradle:

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

buildscript {
    repositories {
        jcenter()
        mavenLocal()
        google()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.5.3'
        classpath 'com.google.gms:google-services:4.3.3'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
        mavenLocal()
        google()
    }
}

вот мое приложение build.gradle:

    apply plugin: 'com.android.application'

repositories {
    mavenLocal()
    flatDir {
        dirs 'libs'
    }
}

android {
    compileSdkVersion 26

    defaultConfig {
        applicationId "com.google.firebase.udacity.friendlychat"
        minSdkVersion 16
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    packagingOptions {
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/LICENSE-FIREBASE.txt'
        exclude 'META-INF/NOTICE'
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation'junit:junit:4.12'
    implementation 'com.google.firebase:firebase-analytics:17.2.0'
    implementation 'com.google.firebase:firebase-database:19.2.0'
    implementation 'com.android.support:design:26.0.1'
    implementation 'com.android.support:appcompat-v7:26.0.1'

    // Displaying images

    implementation 'com.github.bumptech.glide:glide:4.9.0'

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

enter image description here

gradle-wrapper.properties

 #Mon Jan 06 14:06:26 EET 2020
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip

1 Ответ

0 голосов
/ 07 января 2020
dependencies {
 implementation 'com.google.firebase:firebase-analytics:17.2.1'
 // Add the SDKs for any other Firebase products you want to use in your app
 // For example, to use Firebase Authentication and Cloud Firestore
 implementation 'com.google.firebase:firebase-auth:19.2.0'
 implementation 'com.google.firebase:firebase-firestore:21.3.1'

 // Getting a "Could not find" error? Make sure that you've added
 // Google's Maven repository to your root-level build.Gradle file
}

Вы можете добавить любой из поддерживаемых продуктов Firebase в ваше приложение Android. Для более подробной информации

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...