android上的firebase设置
Posted
技术标签:
【中文标题】android上的firebase设置【英文标题】:firebase setup on android 【发布时间】:2016-09-26 17:02:18 【问题描述】:我无法在 android studio 上设置更新版本的 firebase。 我已经在站点 firebase 上创建了项目的 json 文件并将其复制到项目中,并在 gradle 中处理行之后:
buildscript
// ...
dependencies
// ...
classpath 'com.google.gms:google-services:3.0.0'
apply plugin: 'com.android.application'
android
// ...
dependencies
compile 'com.google.firebase:firebase-core:9.0.1'
// ADD THIS AT THE BOTTOM
apply plugin: 'com.google.gms.google-services'
我收到以下错误:
failed to resolve: compile 'com.google.firebase:firebase-core:9.0.0'
我该如何解决?
【问题讨论】:
尝试在 SDK 中更新 Google Play 服务。 【参考方案1】:我遇到了同样的问题。如果您使用的是 Android Studio,则应在 SDK Manager 中更新 google repository
。
以下是我的build.grade(app)
apply plugin: 'com.android.application'
android
compileSdkVersion 23
buildToolsVersion "23.0.3"
useLibrary 'org.apache.http.legacy'
defaultConfig
applicationId "package name"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
vectorDrawables.useSupportLibrary = true
buildTypes
release
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
dependencies
compile 'com.google.firebase:firebase-core:9.0.0'
apply plugin: 'com.google.gms.google-services'
这是我的build.grade(project)
buildscript
repositories
jcenter()
dependencies
classpath 'com.android.tools.build:gradle:2.1.0'
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()
【讨论】:
Volley、okhttp、和 apache http?为什么? @cricket_007 抱歉,您只是拿走了您需要的东西。我告诉那是我的 build.gradle。无论如何,我确实编辑并删除了它们【参考方案2】:Firebase 基于 Google Play 服务运行。因此,请确保您拥有以下 sdk 工具,并且它们已更新以与您正在使用的 firebase 库版本同步。
SDK Tools installed for this project
项目级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'
allprojects
repositories
jcenter()
模块级build.gradle文件
apply plugin: 'com.android.application'
android
packagingOptions
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE-FIREBASE.txt'
exclude 'META-INF/NOTICE'
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig
applicationId "com.devdeeds.firebaseauth"
minSdkVersion 17
targetSdkVersion 23
versionCode 1
versionName "1.0"
buildTypes
release
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
dependencies
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.firebase:firebase-auth:9.2.0'
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.android.support:design:23.3.0'
apply plugin: 'com.google.gms.google-services'
【讨论】:
以上是关于android上的firebase设置的主要内容,如果未能解决你的问题,请参考以下文章
(Android和Firebase)无法解析符号“dataSnapshot”[关闭]
用于 signInWithPhoneNumber 的 Firebase AUTH API 导致 400 错误请求
Uncaught FirebaseError: Firebase: No Firebase App '[DEFAULT]' has been created - 在 vue.js 中调用 Fireba
Stripe 和 Firebase:FirebaseError:collection() 的第一个参数应为 CollectionReference、DocumentReference 或 Fireba