react-native-notify-kit 9.1.20 → 9.1.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/android/libs/app/notifee/core/maven-metadata.xml +1 -1
- package/android/libs/app/notifee/core/maven-metadata.xml.md5 +1 -1
- package/android/libs/app/notifee/core/maven-metadata.xml.sha1 +1 -1
- package/android/libs/app/notifee/core/maven-metadata.xml.sha256 +1 -1
- package/android/libs/app/notifee/core/maven-metadata.xml.sha512 +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/ios/NotifeeCore/NotifeeCore+UNUserNotificationCenter.m +3 -4
- package/package.json +1 -1
- package/src/version.ts +1 -1
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ This repository preserves the original Notifee APIs and native core while contin
|
|
|
18
18
|
|
|
19
19
|
## Why this fork
|
|
20
20
|
|
|
21
|
-
The original [Notifee](https://github.com/invertase/notifee)
|
|
21
|
+
The original [Notifee](https://github.com/invertase/notifee) repository was **officially archived** by Invertase on April 7, 2026 (last release: v9.1.8, December 2024). The archived README recommends this fork (`react-native-notify-kit`) as a community-maintained drop-in replacement, alongside `expo-notifications`. Previously, in [issue #1254](https://github.com/invertase/notifee/issues/1254), the Invertase maintainer had already suggested migrating to `expo-notifications`.
|
|
22
22
|
|
|
23
23
|
However, `expo-notifications` does not cover several advanced capabilities that many production apps rely on:
|
|
24
24
|
|
|
@@ -34,6 +34,7 @@ This fork fills the gap: it preserves all of Notifee's advanced features, migrat
|
|
|
34
34
|
|
|
35
35
|
<a href="https://github.com/marcocrupi/react-native-notify-kit/commits"><img src="https://img.shields.io/github/last-commit/marcocrupi/react-native-notify-kit.svg" alt="Last commit"></a>
|
|
36
36
|
|
|
37
|
+
- Officially recommended by Invertase as the community-maintained fork (April 2026)
|
|
37
38
|
- Maintained fork of Notifee — actively developed and published as `react-native-notify-kit`
|
|
38
39
|
- New Architecture only (TurboModules)
|
|
39
40
|
- Minimum supported React Native: `0.73`
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
523426f863dc23250d0c1a743fb96b31
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
a2d62626c243cf75d31c355f4d49e273ce8ef511
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
77dc38d52afd9711760ea1cdad9009496dd3f8eb9187bce7eb07c0e0b6647f80
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
17ce45722d24eb4fb5514a182980771c671b468f4173186b2c765fb259e4a9f0ef6c41e92732b7b4ee48ce736bff59918ff9b02bf8795e855d30c93d0cd474c5
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "9.1.
|
|
1
|
+
export declare const version = "9.1.21";
|
package/dist/version.js
CHANGED
|
@@ -175,10 +175,9 @@ struct {
|
|
|
175
175
|
// presentation options instead so the system shows the notification as it
|
|
176
176
|
// would if Notifee had not installed a delegate at all.
|
|
177
177
|
if (@available(iOS 14.0, *)) {
|
|
178
|
-
completionHandler(
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
UNNotificationPresentationOptionBadge);
|
|
178
|
+
completionHandler(
|
|
179
|
+
UNNotificationPresentationOptionBanner | UNNotificationPresentationOptionSound |
|
|
180
|
+
UNNotificationPresentationOptionList | UNNotificationPresentationOptionBadge);
|
|
182
181
|
} else {
|
|
183
182
|
completionHandler(UNNotificationPresentationOptionAlert |
|
|
184
183
|
UNNotificationPresentationOptionSound |
|
package/package.json
CHANGED
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
export const version = '9.1.
|
|
2
|
+
export const version = '9.1.21';
|