错误:无法解决:com.google.firebase:firebase-appindexing:9.6.1

时间:2016-11-28 20:38:14

标签: android gradle firebase

这是Gradle应用程序代码,它显示错误
无法编译
所以我拉我的头发没有得到bug 请任何人在这里ping !!

android {
    compileSdkVersion 24
    buildToolsVersion "24.0.3"

    defaultConfig {
        applicationId "com.google.firebase.codelab.friendlychat"
        minSdkVersion 16
        targetSdkVersion 24
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner          "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'

    compile 'com.android.support:design:24.2.1'
    compile 'com.github.bumptech.glide:glide:3.6.1'
    compile 'de.hdodenhof:circleimageview:1.3.0'
    compile 'com.android.support:appcompat-v7:24.2.1'

    // Google

    compile 'com.google.android.gms:play-services-auth:9.6.1'


    // Firebase

    compile 'com.google.firebase:firebase-database:9.6.1'
    compile 'com.google.firebase:firebase-auth:9.6.1'



    compile 'com.google.firebase:firebase-config:9.6.1'
    compile 'com.google.android.gms:play-services-appinvite:9.6.1'
    compile 'com.google.firebase:firebase-messaging:9.6.1'
    compile 'com.google.android.gms:play-services-ads:9.6.1'
    compile 'com.google.firebase:firebase-crash:9.6.1'

    This line getting error please anybody get in touch

    compile 'com.google.firebase:firebase-appindexing:9.6.1'

}

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

3 个答案:

答案 0 :(得分:3)

我还没有找到appindexing历史的解释,但是从10.0.0之前的快速入门项目revision history开始,包名是不同。尝试在依赖项中使用它:

compile 'com.google.android.gms:play-services-appindexing:9.6.1'

此答案假设您使用的是10.0.0之前的API功能。 Migration Guide解释了差异。

答案 1 :(得分:2)

如果您使用的是Firebase版本9.8.0或更低版本,则需要使用com.google.android.gms:play-services-appindexing:<VERSION>表单。如果您使用的是10.0.0或更高版本,则需要使用com.google.firebase:firebase-appindexing:<VERSION>表单。名称在版本10.0.0中已更改。

如果您在尝试此操作时收到“无法解决”错误,请按照以下步骤更新您的Google Play服务SDK: Failed to resolve: com.google.firebase:firebase-core:9.0.0

答案 2 :(得分:0)

实际上它是API错误,并且谷歌也报告了错误。 所以只是错误。