我正在Android应用程序中进行Firebase云消息传递设置。我不是第一次这样做,我已经做了很多次了。但是这一次,我在尝试获取设备令牌时收到一个奇怪的错误“无效的发件人ID”。我从未在我的项目中使用过任何发件人ID,除了google-services.json文件中默认存在的项目编号。我从这个
。我正在使用此方法生成令牌。我在我的项目中添加了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时,一切正常。
答案 0 :(得分:1)
我也有同样的例外。
(java.io.IOException: INVALID_SENDER
)
我已经成功获取了注册令牌,但是在删除了Firebase项目并重新创建了Firebase项目之后,我开始获得Invalid sender
异常。
我确认我复制了正确的google-services.json
文件,但是发生了异常。
解决方案很简单。 只需删除在下面生成的 google-services 文件夹。
Project_Name\app\build\generated\res\google-services
如果您删除文件夹并重建项目,则从当前google-services.json
文件中创建正确的google-services文件夹。
现在您可以获得Firebase注册令牌。
答案 1 :(得分:0)
是的,我花了大约30个小时后终于解决了该代码,该代码是由以前的开发人员完成的,我发现有两个google-services.json文件,一个在app文件夹中,另一个在debug文件夹中,所以发件人ID是因此,我想建议所有收到此错误的人:-