管理 Firebase 安装实施的截止日期是什么时候?移动应用中已弃用的 Firebase 安装 ID 有何影响?
What is Deadline of Manage Firebase installations implementation ? What is impact of deprecated Firebase installation ID in Mobile app?
管理 Firebase 安装实施的截止日期是什么时候?移动应用中弃用的 Firebase 安装 ID 有什么影响?
我们有一个使用 Firebase 安装 ID 的现有项目,因为它现在已被弃用。如果我们不将其从移动应用程序中删除,它将如何影响通知?实施管理 Firebase 安装的最后日期是什么时候?
Cloud Messaging version 22.0.0 发布于 2021 年 5 月 11 日 - 他们已从其 SDK 中删除了此依赖项。
Removed dependency on the deprecated Firebase Instance ID SDK.
Caution: This is a breaking change for apps that use FCM and the deprecated Firebase Instance ID API to manage registration tokens.
We strongly recommend migrating to FCM's token APIs. If you're unable to migrate to the replacement APIs, add a direct dependency on the firebase-iid library to your build.gradle file.
您现在仍然可以继续直接使用 firebase-iid
。这是为了让我们有足够的时间迁移到新的 api。您应该考虑根据您的日程安排迁移到新的 API。
实施新的 Manage Firebase 安装是否有正式的截止日期?
No direction on this by Firebase team yet.
继续使用firebase-iid对IOS和Android应用有什么影响?
It will keep working as it does today. However since it is not being maintained, it will not receive any new feature updates as the counterpart would.
如果用户使用最新的 os 并且不支持 firebase-iid 会怎样?
You package your firebase-iid
code with your app bundle/apk. You do not rely on OS having it. So it seems a long way to go before your code stops working at all.
管理 Firebase 安装实施的截止日期是什么时候?移动应用中弃用的 Firebase 安装 ID 有什么影响?
我们有一个使用 Firebase 安装 ID 的现有项目,因为它现在已被弃用。如果我们不将其从移动应用程序中删除,它将如何影响通知?实施管理 Firebase 安装的最后日期是什么时候?
Cloud Messaging version 22.0.0 发布于 2021 年 5 月 11 日 - 他们已从其 SDK 中删除了此依赖项。
Removed dependency on the deprecated Firebase Instance ID SDK.
Caution: This is a breaking change for apps that use FCM and the deprecated Firebase Instance ID API to manage registration tokens. We strongly recommend migrating to FCM's token APIs. If you're unable to migrate to the replacement APIs, add a direct dependency on the firebase-iid library to your build.gradle file.
您现在仍然可以继续直接使用 firebase-iid
。这是为了让我们有足够的时间迁移到新的 api。您应该考虑根据您的日程安排迁移到新的 API。
实施新的 Manage Firebase 安装是否有正式的截止日期?
No direction on this by Firebase team yet.
继续使用firebase-iid对IOS和Android应用有什么影响?
It will keep working as it does today. However since it is not being maintained, it will not receive any new feature updates as the counterpart would.
如果用户使用最新的 os 并且不支持 firebase-iid 会怎样?
You package your
firebase-iid
code with your app bundle/apk. You do not rely on OS having it. So it seems a long way to go before your code stops working at all.