将Firebase与Android集成

时间:2016-05-24 10:22:31

标签: android firebase

我按照所需步骤将Firebase集成到我的Android项目中,但不幸的是我有错误:未知主机' jcenter.bintray.com'。您可能需要在Gradle中调整代理设置。

当我添加时会发生这种情况: [编辑]与文件的内容

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.2.0-alpha1'
        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
}

到我的build.gradle文件。没有这一行,我可以毫无问题地同步项目。

代理设置(在工作中):

systemProp.http.proxyHost=3.187.156.241
systemProp.http.proxyPort=88

非常感谢!

1 个答案:

答案 0 :(得分:-1)

您可以将播放服务更新为9.您可以在gradle中使用以下行

compile 'com.google.android.gms:play-services:9.0.0'

它对我有用!!!希望能帮到你!

注意:您需要什么

Android Studio版本2.0 +。

使用Android 2.3+和Google Play服务9.0或更高版本的测试设备。