Ошибка в Gradle при добавлении зависимости объявлений Firebase - PullRequest
0 голосов
/ 06 июня 2018

После того, как я добавил реализацию зависимости от объявлений firebase'com.google.firebase: firebase-ads: 15.0.1 ', теперь я получаю следующее сообщение об ошибке:

Error:The library com.google.firebase:firebase-analytics is being requested by various other libraries at [[15.0.1,16.0.0), [16.0.0,16.0.0], [16.0.0,99999]], but resolves to 16.0.0. Disable the plugin and check your dependencies tree using ./gradlew :app:dependencies.
но я не добавил аналитическую зависимость, так как мне это не нужно, но я все равно добавил ее, чтобы увидеть погоду, это решает проблему, но я все еще получаю ту же ошибку, следующее моеbuild.gradle (модуль приложения)

//noinspection GradleCompatible
apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    defaultConfig {
        applicationId "com.example.rimapps.midippu"
        minSdkVersion 15
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        multiDexEnabled true
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation 'com.android.support:support-annotations:27.1.1'
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:26.1.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.1'
    implementation 'com.android.support:support-v4:26.1.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    implementation 'com.android.support:design:26.1.0'
    implementation 'com.android.support:recyclerview-v7:26.1.0'
    //noinspection GradleDynamicVersion
    implementation 'com.android.support:cardview-v7:26.1.0+'
    //noinspection GradleCompatible
    implementation 'com.google.firebase:firebase-core:16.0.0'
    apply plugin: 'com.google.gms.google-services'
    implementation'com.google.firebase:firebase-analytics:16.0.0'
    implementation 'com.google.firebase:firebase-firestore:17.0.1'
    implementation 'com.google.firebase:firebase-ads:15.0.1'
    implementation 'com.android.support:multidex:1.0.3'
    implementation 'com.squareup.okhttp3:okhttp:3.9.1'
    implementation 'com.squareup.picasso:picasso:2.5.2'
    implementation 'com.google.firebase:firebase-messaging:17.0.0'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}

apply plugin: 'com.google.gms.google-services'
Могу ли я что-нибудь сделать?

1 Ответ

0 голосов
/ 06 июня 2018

Это сработало после того, как я обновил свою зависимость от classpath до classpath 'com.google.gms: google-services: 4.0.1' в своем проекте gradle

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