Firebase身份验证 - 删除数据

时间:2017-12-08 10:16:00

标签: firebase authentication android-studio-3.0

作为初学者,我第一次尝试使用firebase,虽然按照过程我做了每件事,但我不知道我哪里出错了。 我在Android Studio 3.0.1中工作

这是我的gradle构建文件。

apply plugin: 'com.android.application'

android {
compileSdkVersion 26
buildToolsVersion "26.0.2"
defaultConfig {
    applicationId "courses.pluralsight.com.tabianconsulting"
    minSdkVersion 16
    targetSdkVersion 26
    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'])
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:26.+'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.google.firebase:firebase-auth:11.0.4'
testCompile 'junit:junit:4.12'
     }
 apply plugin: 'com.google.gms.google-services'

在搜索了sdk,firebase和google play服务的正确版本之后,我仍然无法正确使用它,尝试进行组合并且它不起作用。 Android SDK版本26.0.1 Google Play服务46 Google存储库58

我得到的错误低于

        E/FA: Discarding data. Failed to send app launch
        E/FA: Failed to get app instance id

请有人帮助我!!

1 个答案:

答案 0 :(得分:0)

根据我的收集,您需要转到SDK管理器并将模拟器更新到其最新版本,以便支持您要使用的firebase版本。