Не удалось разрешить: firebase-storage-15.0.0 - PullRequest
0 голосов
/ 22 ноября 2018

Когда я добавляю Firebase в свое приложение, он показывает эту ошибку:

Не удалось разрешить: 'firebase-storage-15.0.0'

И ошибка наэта строка: com.android.support:appcompat-v7:28.0.0

apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.rud.younis.csedepertment"
        minSdkVersion 19
        targetSdkVersion 28
        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'])
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support:design:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    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-storage:16.0.1:15.0.0'
    implementation 'com.google.firebase:firebase-auth:16.0.1:15.0.0'
    implementation 'com.google.firebase:firebase-database:16.0.1:15.0.0'

}

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

Ответы [ 3 ]

0 голосов
/ 22 ноября 2018

Вы получаете следующую ошибку:

Не удалось разрешить: 'firebase-storage-15.0.0'

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

implementation 'com.google.firebase:firebase-core:16.0.1'
implementation 'com.google.firebase:firebase-storage:16.0.1:15.0.0'
implementation 'com.google.firebase:firebase-auth:16.0.1:15.0.0'
implementation 'com.google.firebase:firebase-database:16.0.1:15.0.0'

на

implementation 'com.google.firebase:firebase-core:16.0.4'
implementation 'com.google.firebase:firebase-storage:16.0.5'
implementation 'com.google.firebase:firebase-auth:16.0.5'
implementation 'com.google.firebase:firebase-database:16.0.5'

Поскольку версий, таких как 16.0.1:15.0.0, не существует.

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

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

У меня была такая же проблема.Я только что обновил свою андроид студию, и она исправляет ошибку.Так что просто обновите свою андроид студию.

0 голосов
/ 22 ноября 2018

В ваших зависимостях есть несколько основных опечаток:

implementation 'com.google.firebase:firebase-storage:16.0.1:15.0.0'
implementation 'com.google.firebase:firebase-auth:16.0.1:15.0.0'
implementation 'com.google.firebase:firebase-database:16.0.1:15.0.0'

Что с 16.0.1:15.0.0?

Измените его на 15.0.0 или 16.0.1

...