- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果我使用教程中提供的代码,我会收到以下警告:
Warning CS0618: 'FirebaseInstanceIdService' is obsolete: 'This class is obsoleted in this android platform'
Warning CS0672: Member 'MyFirebaseIIDService.OnTokenRefresh()' overrides obsolete member 'FirebaseInstanceIdService.OnTokenRefresh()'. Add the Obsolete attribute to 'MyFirebaseIIDService.OnTokenRefresh()'.
Warning CS0618: 'FirebaseInstanceId.Token' is obsolete: 'deprecated'
我不明白我是否可以像现在这样使用这段代码,或者是否需要更改某些内容才能使代码在当前的 Android 设备上运行。
是否需要改代码?
我的 AndroidManifest.xml 设置:最低 Android 版本 = Android 5.0(API 级别 21),目标 Android 版本 = Android 9.0(API 级别 28)
MyFirebaseIIDService.cs:
using System;
using Android.App;
using Firebase.Iid;
using Android.Util;
namespace Androidproject
{
[Service]
[IntentFilter(new[] { "com.google.firebase.INSTANCE_ID_EVENT" })]
public class MyFirebaseIIDService : FirebaseInstanceIdService
{
const string TAG = "MyFirebaseIIDService";
public override void OnTokenRefresh()
{
var refreshedToken = FirebaseInstanceId.Instance.Token;
Log.Debug(TAG, "Refreshed token: " + refreshedToken);
SendRegistrationToServer(refreshedToken);
}
void SendRegistrationToServer(string token)
{
// Add custom implementation, as needed.
}
}
}
您可以在本教程中找到代码示例:https://learn.microsoft.com/en-us/xamarin/android/data-cloud/google-messaging/remote-notifications-with-fcm?tabs=windows
最佳答案
当您更新到 Xamarin.Firebase.Messaging 版本 71.1740.0 时,您会开始收到有关由于 Google 库中的更改而弃用的方法的编译器警告。您不再需要 FirebaseInstanceIdService
所以继续删除它。现在,您可以从 FirebaseMessagingService.OnNewToken
方法中获取设备 token 。
关于c# - 警告 CS0618 : 'FirebaseInstanceIdService' is obsolete: 'This class is obsoleted in this android platform,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57114095/
我是一名优秀的程序员,十分优秀!