react-native-notify-kit 9.1.21 → 9.1.22

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 CHANGED
@@ -252,7 +252,7 @@ This fork is a complete migration to React Native's **New Architecture**:
252
252
  - **Minimum React Native 0.73**, development target **0.84**
253
253
  - **Toolchain**: Yarn 4, Node 22+, Java 17, compileSdk/targetSdk 35
254
254
  - **Core notification logic (NotifeeCore) is unchanged** — the public API is fully compatible with the original Notifee
255
- - **17 upstream bugs fixed** — see [Bugs Fixed from Upstream Notifee](#bugs-fixed-from-upstream-notifee) below
255
+ - **18 upstream bugs fixed** — see [Bugs Fixed from Upstream Notifee](#bugs-fixed-from-upstream-notifee) below
256
256
  - **Reliable trigger notifications** — AlarmManager is the default backend instead of WorkManager, with automatic fallback when exact alarm permission is not granted
257
257
  - **New API: `setNotificationConfig()`** — opt-out flag to prevent Notifee from intercepting iOS remote notification handlers (see [New APIs](#new-apis) below)
258
258
 
@@ -280,6 +280,7 @@ This fork fixes the following bugs that were never resolved in the original Noti
280
280
  | DST (daylight saving time) shifts repeating scheduled notifications by ±1 hour | Android | [#875](https://github.com/invertase/notifee/issues/875) | 9.1.14 |
281
281
  | `!=` reference equality on String comparison in `NotificationPendingIntent` (latent — would activate when `getLaunchActivity()` returns a non-null value for `id=default`) | Android | Pre-existing (latent) | 9.1.19 |
282
282
  | `pressAction.launchActivity` not defaulted at native layer when `pressAction.id === 'default'` | Android | N/A (defense-in-depth) | 9.1.19 |
283
+ | Duplicate symbols linker error when using NSE (`$NotifeeExtension = true`) with static frameworks — `NotifeeExtensionHelper` compiled by both `RNNotifee` and `RNNotifeeCore` pods | iOS | Pre-existing | 9.1.22 |
283
284
 
284
285
  > **Note for apps requiring guaranteed exact alarms (alarm clocks, timers, calendars):**
285
286
  > Add `<uses-permission android:name="android.permission.USE_EXACT_ALARM" />` to your app's
package/RNNotifee.podspec CHANGED
@@ -27,6 +27,7 @@ Pod::Spec.new do |s|
27
27
  elsif defined?($NotifeeExtension) && $NotifeeExtension == true
28
28
  # App uses Notification Service Extension
29
29
  Pod::UI.warn "RNNotifee: using Notification Service Extension."
30
+ s.exclude_files = 'ios/RNNotifee/NotifeeExtensionHelper.{h,m}'
30
31
  s.dependency 'RNNotifeeCore'
31
32
  else
32
33
  s.subspec "NotifeeCore" do |ss|
@@ -8,6 +8,6 @@
8
8
  <versions>
9
9
  <version>202108261754</version>
10
10
  </versions>
11
- <lastUpdated>20260407165108</lastUpdated>
11
+ <lastUpdated>20260408055744</lastUpdated>
12
12
  </versioning>
13
13
  </metadata>
@@ -1 +1 @@
1
- 523426f863dc23250d0c1a743fb96b31
1
+ 0a0a923e7e6d3bd6a7b384ce83713718
@@ -1 +1 @@
1
- a2d62626c243cf75d31c355f4d49e273ce8ef511
1
+ 2ed4847e7af226eeee4cd3c6f52a9d8c2eb06950
@@ -1 +1 @@
1
- 77dc38d52afd9711760ea1cdad9009496dd3f8eb9187bce7eb07c0e0b6647f80
1
+ e5651497d7d19798fea39b5b94a19004aaef89f9c834dd75e725d9aad169ca0f
@@ -1 +1 @@
1
- 17ce45722d24eb4fb5514a182980771c671b468f4173186b2c765fb259e4a9f0ef6c41e92732b7b4ee48ce736bff59918ff9b02bf8795e855d30c93d0cd474c5
1
+ 4a5f3077a692f986b2d973c8f3558197b757c57bcd27625d84ecdefaab351181d1130c28882201e47512b4c2848da854887e94702cf46fa40873b9b4b35757d0
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const version = "9.1.21";
1
+ export declare const version = "9.1.22";
package/dist/version.js CHANGED
@@ -1,3 +1,3 @@
1
1
  // Generated by genversion.
2
- export const version = '9.1.21';
2
+ export const version = '9.1.22';
3
3
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-notify-kit",
3
- "version": "9.1.21",
3
+ "version": "9.1.22",
4
4
  "author": "Marco Crupi",
5
5
  "description": "Maintained Notifee-compatible fork for React Native — advanced local notifications for Android & iOS.",
6
6
  "main": "dist/index.js",
package/src/version.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- export const version = '9.1.21';
2
+ export const version = '9.1.22';