我在跟踪这条弧线。检查步骤12。
1.在相同的方法中,在调用Bootstrap.开始之后,有条件地调用FirebaseApp示例上的GetInstanceId,将MainActivity添加为IOnSuccessListener。
if (DeviceInstallationService.NotificationsSupported)
{
FirebaseInstanceId.GetInstance(Firebase.FirebaseApp.Instance)
.GetInstanceId()
.AddOnSuccessListener(this);
}
字符串
但是FirebaseInstanceId
已被弃用。相反,我需要编写类似的代码,类似于:
if (DeviceInstallationService.NotificationsSupported)
{
FirebaseInstallations.GetInstance(Firebase.FirebaseApp.Instance)
.GetId()
.AddOnSuccessListener(???);
}
型
我应该向AddOnSuccessListener
提供什么?
1条答案
按热度按时间g2ieeal71#
我想出来了你需要让
MainActivity
实现IOnSuccessListener
,像这样:字符串
你还需要像这样更新代码:
型
你需要像这样更新
OnSuccess
:型