如何在native native和android中创建本地通知

问题描述 投票:3回答:2

我正在尝试使用react-native在android中创建本地通知。我的应用程序是完全本地的,所以我不想使用GCM或FCM。我看到了this question

使用java完成的地方。是否存在包装器或库中的原生反应来实现相同的功能?

我也看到了PushNotificationIOS API,它会与android一起使用吗?

android notifications react-native
2个回答
3
投票

是的,react-native-push-notifications。它在iOS和Android上都会进行本地通知。

https://github.com/zo0r/react-native-push-notification


1
投票

您可以使用https://github.com/zo0r/react-native-push-notification来处理本地通知。您可以将其与GCM依赖关系一起使用。通读Usage部分GCM和预定通知是可选的。我与Jobscheduler一起使用它来避免FCM依赖。

© www.soinside.com 2019 - 2024. All rights reserved.