无法解决:com.google.firebase:firebase-core:9.2.1

时间:2016-09-26 15:59:53

标签: android firebase

我的SDK管理员说一切都是最新的:
Google Play服务:33
Google信息库:35

build.gradle内容:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.3"
    defaultConfig {
        applicationId "com.project.cloudmessagingdemo"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    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 {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:23.4.0'
    compile 'com.google.firebase:firebase-messaging:9.2.1'
    testCompile 'junit:junit:4.12'
}

为什么不编译?

Error image

4 个答案:

答案 0 :(得分:1)

Google Repository 35包含最新版本 - 尝试'com.google.firebase:firebase-messaging:9.6.1'

不幸的是,9.6.1是上周晚些时候发布的补丁版本,因此并非所有文档都可以更新以指向它 - 抱歉!

答案 1 :(得分:1)

在SDK中更新您的Google信息库。 enter image description here

答案 2 :(得分:0)

文件名 build.gradle(项目:"您的应用名称")

dependencies {
    classpath 'com.android.tools.build:gradle:2.2.0'
    classpath 'com.google.gms:google-services:3.0.0'
}

添加该行" classpath' com.google.gms:google-services:3.0.0' "到项目中的build.gradle文件

答案 3 :(得分:0)

降级firebase版本。为我工作