react-native-notify-kit 10.4.2 → 10.4.3
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 +4 -4
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +4 -3
- package/src/version.ts +1 -1
package/README.md
CHANGED
|
@@ -48,8 +48,8 @@ This fork fills the gap: it preserves all of Notifee's advanced features, migrat
|
|
|
48
48
|
- iOS FCM Mode Notification Service Extension automation via config plugin.
|
|
49
49
|
- Android foreground service manifest configuration via config plugin, with explicit opt-in for foreground service types.
|
|
50
50
|
- Android Expo FCM smoke validation using RNFirebase data-only messages and `notifee.handleFcmMessage`.
|
|
51
|
-
- Minimum supported React Native:
|
|
52
|
-
- Development target: React Native `0.
|
|
51
|
+
- Minimum supported React Native: `>=0.73`
|
|
52
|
+
- Development target: React Native `0.85.3`
|
|
53
53
|
- License: `Apache-2.0`
|
|
54
54
|
- Full changelog: [CHANGELOG.md](CHANGELOG.md)
|
|
55
55
|
|
|
@@ -432,8 +432,8 @@ This fork is a complete migration to React Native's **New Architecture**:
|
|
|
432
432
|
- **TurboModules only** — no legacy Bridge support (`NativeModules` replaced with `TurboModuleRegistry`)
|
|
433
433
|
- **Android bridge rewritten in Kotlin** (original was Java)
|
|
434
434
|
- **iOS bridge uses Objective-C++** with `NativeNotifeeModuleSpecJSI` TurboModule conformance
|
|
435
|
-
- **Minimum React Native 0.73**, development target **0.
|
|
436
|
-
- **Toolchain**: Yarn 4, Node 22+, Java 17, compileSdk/targetSdk 35
|
|
435
|
+
- **Minimum React Native >=0.73**, development target **0.85.3**
|
|
436
|
+
- **Toolchain**: Yarn 4, Node 22+, Java 17, library Android module compileSdk/targetSdk 35
|
|
437
437
|
- **Single Android module** — the original Notifee shipped a pre-compiled AAR bundled inside the npm tarball under a frozen Maven coordinate; this fork compiles the core from source as part of the React Native bridge module on every consumer build. Eliminates the `FAIL_ON_PROJECT_REPOS` issue on RN 0.74+ and the Gradle cache staleness bug that could serve outdated bytecode after `yarn upgrade`.
|
|
438
438
|
- **Expo CNG development builds** — iOS FCM Mode NSE automation and Android foreground service manifest configuration are available through the config plugin. Android Expo FCM smoke validation uses RNFirebase data-only messages plus `notifee.handleFcmMessage`.
|
|
439
439
|
- **Core notification logic (NotifeeCore) is unchanged** — the public API is fully compatible with the original Notifee
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "10.4.
|
|
1
|
+
export declare const version = "10.4.3";
|
package/dist/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-notify-kit",
|
|
3
|
-
"version": "10.4.
|
|
3
|
+
"version": "10.4.3",
|
|
4
4
|
"author": "Marco Crupi",
|
|
5
5
|
"description": "Maintained Notifee-compatible React Native notifications library for Android, iOS, FCM Mode, rich notifications, foreground services, and Expo CNG development builds.",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -43,13 +43,14 @@
|
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@babel/preset-env": "^7.25.3",
|
|
45
45
|
"@babel/runtime": "^7.25.0",
|
|
46
|
-
"@react-native/babel-preset": "0.
|
|
46
|
+
"@react-native/babel-preset": "0.85.3",
|
|
47
|
+
"@react-native/jest-preset": "0.85.3",
|
|
47
48
|
"@types/jest": "^29.5.13",
|
|
48
49
|
"babel-jest": "^29.7.0",
|
|
49
50
|
"genversion": "^3.0.2",
|
|
50
51
|
"jest": "^29.7.0",
|
|
51
52
|
"prettier": "^3.8.1",
|
|
52
|
-
"react-native": "0.
|
|
53
|
+
"react-native": "0.85.3",
|
|
53
54
|
"rimraf": "^3.0.2",
|
|
54
55
|
"ts-jest": "^29.2.5",
|
|
55
56
|
"typescript": "^5.9.3"
|
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
export const version = '10.4.
|
|
2
|
+
export const version = '10.4.3';
|