E / FirebaseInstanceId:令牌检索失败:AUTHENTICATION_FAILED Android studio

Jon*_*baz 5 java android android-studio

好吧,这里有点疯狂。Eveytime我在处理任何代码之前在android studio中启动了我的应用程序,但收到此错误:

E/FirebaseInstanceId: Token retrieval failed: AUTHENTICATION_FAILED
Run Code Online (Sandbox Code Playgroud)

应用程式Gradle:

应用插件:“ com.android.application”

android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "fraternityandroid.greeklife"
        minSdkVersion 22
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        multiDexEnabled true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    productFlavors {
    }
}

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.google.firebase:firebase-database:11.6.2'
implementation 'com.google.firebase:firebase-auth:11.6.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-

core:3.0.1'
    implementation 'com.google.android.gms:play-services:11.6.2' //11.7.43 //could do 11.6.2 all around
}


apply plugin: 'com.google.gms.google-services'
Run Code Online (Sandbox Code Playgroud)

项目摇篮:

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

buildscript {

repositories {
    google()
    jcenter()
}
dependencies {
    classpath 'com.android.tools.build:gradle:3.0.0'


    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
    classpath 'com.google.gms:google-services:3.1.0'
}
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}
Run Code Online (Sandbox Code Playgroud)

码:

    public void validateExists() {
    FirebaseDatabase database = FirebaseDatabase.getInstance();
    DatabaseReference myRef = database.getReference("Users");

    myRef.addValueEventListener(new ValueEventListener() {
        @Override
        public void onDataChange(DataSnapshot snapshot) {
            for (DataSnapshot postSnapshot: snapshot.getChildren()) {
                Map<String, Object> post = (HashMap<String, Object>) postSnapshot.getValue();
                for (Map.Entry<String, Object> entry : post.entrySet()) {
                    if (mEmail.getText().toString().equals(entry.getValue())) {
                        System.out.println("found it!!!");
                        authenticate();
                        return;
                    }
                    System.out.println("Didnt find it!!!");
                }
            }
        }

        @Override
        public void onCancelled(DatabaseError error) {
            System.out.println("Errorrrr it!!!");

            //log error
        }
    });
}
Run Code Online (Sandbox Code Playgroud)

我只是想运行一些该死的firebase调用。我在模拟器(API 26)上的Play商店正在运行11.7.2

请helpppp谢谢

Mus*_*oud 5

实际上,当我开始使用带有代理的 LAN 时,一旦我更改为 wifi,它就开始完美运行.. 所以我想这是一个通信问题.. 但我的建议是使用您的 android 手机而不是模拟器。