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

时间:2016-11-05 10:34:46

标签: android firebase android-gradle firebase-realtime-database build.gradle

我想使用此link.使用firebase实时数据库。在第6步之后,它给出了

  

无法解决

错误。

build.gradle应用程序模块:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "24.0.0"

    defaultConfig {
        applicationId "gc.imageuploader"
        minSdkVersion 14
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    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:appcompat-v7:23.4.0'
    compile 'com.google.firebase:firebase-database:9.6.1'
}
apply plugin: 'com.google.gms.google-services'

build.gradle项目模块:

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

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.1.2'
        classpath 'com.google.gms:google-services:3.0.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

那我怎么能解决这个问题呢?我该怎么办?你怎么看待这个问题?

1 个答案:

答案 0 :(得分:1)

确保在使用' Google Play服务' 和' Google存储库' >火力地堡即可。

请按照以下步骤操作:

  1. 打开Android工作室
  2. 转到菜单栏>工具> Android> SDK Manager
  3. 点击标签> SDK工具
  4. 检查并安装' Google Play服务' ' Google存储库'
  5. 单击“应用”并等待下载
  6. 最后,再次同步构建您的项目。