找不到与包名称“ com.example.pc.fireApp”匹配的客户端

时间:2019-01-26 01:15:57

标签: java android json firebase android-studio

同步我的gradle时出现此错误。我认为问题出在google service.json文件。

“找不到与包名称'com.example.pc.fireApp'相匹配的客户端”。

我的职业:

 apply plugin: 'com.android.application'

android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "com.example.pc.fireApp"
        minSdkVersion 19
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:27.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation 'com.google.firebase:firebase-core:16.0.1'
}
 apply plugin: 'com.google.gms.google-services'

谢谢

1 个答案:

答案 0 :(得分:1)

那是因为您最近在应用中更改了程序包名称,而您的std::vector文件不包含该程序包

您有2个选项,第一个是手动更改

将其包“ com.example.pc.fireApp”放在其请求的所有位置id

map

enter image description here

enter image description here

选项2正在删除它,并再次与firebase连接(建议,因为第一个选项将在客户端更改程序包,它可以工作,但是您将在firebase控制台中看到一个不同的程序包,并且可能会导致问题未来

在您的IDE,Firebase中转到“工具”并连接任何服务,请记住先删除google-services.json

enter image description here

enter image description here