gpt4 book ai didi

java - 获取设备 token 时发件人 ID 无效

转载 作者:行者123 更新时间:2023-11-30 05:33:38 24 4
gpt4 key购买 nike

我正在 Android 应用中进行 Firebase 云消息传递设置。我不是第一次做,我已经做过很多次了。但这一次,我在尝试获取设备 token 时遇到了一个奇怪的错误“无效的发件人 ID”。除了默认情况下存在于 google-services.json 文件中的项目编号之外,我从未在我的项目中使用过任何发件人 ID。请帮忙我摆脱了这个

.我正在使用此方法生成 token 。我已在我的项目中添加了 google-services.json 文件

 FirebaseInstanceId.getInstance().getInstanceId()
.addOnCompleteListener(new OnCompleteListener<InstanceIdResult>() {
@Override
public void onComplete(@NonNull Task<InstanceIdResult> task) {
if (!task.isSuccessful()) {
Toast.makeText(WelcomeActivity.this,task.getException().getMessage(),Toast.LENGTH_LONG).show();
Log.w("getInstanceId failed", task.getException());
return;
}

// Get new Instance ID token
String token = task.getResult().getToken();
Log.v("sssskkkk",token);

}
});

我在我的项目中使用以下依赖项

 implementation 'com.android.support.constraint:constraint-layout:1.0.2'
api fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.google.firebase:firebase-messaging:17.3.4'
testImplementation('com.android.support.test.espresso:espresso-core:2.2.2')

implementation 'com.squareup.okhttp3:okhttp:3.10.0'
implementation 'me.relex:circleindicator:1.2.2@aar'
implementation 'org.immutables:gson:2.4.0'
implementation 'com.android.volley:volley:1.1.0'
implementation 'com.google.android.gms:play-services-location:17.0.0'

implementation 'com.android.support:multidex:1.0.3'
testImplementation 'junit:junit:4.12'
implementation 'com.borjabravo:readmoretextview:2.0.1'
implementation 'de.hdodenhof:circleimageview:2.2.0'
implementation 'com.github.bumptech.glide:glide:4.8.0'
implementation 'com.github.mabbas007:TagsEditText:1.0.5'
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:cardview-v7:28.0.0'
implementation 'com.android.support:recyclerview-v7:28.0.0'


implementation 'com.android.support:support-core-utils:28.0.0'

implementation 'com.karumi:dexter:4.2.0'

我非常确定在 Firebase 云消息传递的实现中没有遗漏任何内容。此外,当我在具有相同包名称的不同项目中使用相同的 google-services.json 时,一切都工作正常。

最佳答案

是的,我花了大约 30 个小时终于解决了这个问题。该代码是由以前的开发人员完成的,我发现有两个 google-services.json 文件,一个在 app 文件夹中,另一个在 debug 文件夹中,因此发件人 ID 是不匹配。所以我想建议所有遇到此错误的人:-

  1. 应检查您是否已将文件复制到正确的应用文件夹中。
  2. 应检查文件是否正确并与 FCM 中最新下载的 google-services.json 文件匹配
  3. 应检查您的项目中是否存在 google-services.json 的重复文件?

关于java - 获取设备 token 时发件人 ID 无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57046744/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com