@psync/notifee 9.2.0 → 9.2.1

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
@@ -1,37 +1,49 @@
1
1
  <p align="center">
2
+ <a href="https://psync.club">
3
+ <img width="150px" src="https://psync.club/favicon.ico"><br/>
4
+ </a>
2
5
  <a href="https://notifee.app">
3
- <img width="160px" src="https://notifee.app/logo-icon.png"><br/>
6
+ <img width="50px" src="https://notifee.app/logo-icon.png"><br/>
4
7
  </a>
5
8
  <h2 align="center">Notifee - React Native</h2>
6
9
  </p>
7
10
 
8
11
  ---
9
12
 
10
- > ⚠️ **New Architecture Only**: This version of Notifee is built **exclusively for React Native New Architecture**. It requires React Native 0.76+ with the New Architecture enabled. For the legacy architecture, use the stable release branch.
13
+ > ⚠️ **New Architecture Only**: This version of Notifee is built **exclusively for React Native New Architecture**. It requires React Native 0.83+ with the New Architecture enabled. For the legacy architecture, use the @invertase/notifee package.
11
14
 
12
15
  A feature rich Android & iOS notifications library for React Native.
13
16
 
14
17
  [> Learn More](https://notifee.app/)
18
+ [> Get Started](https://notifee.app/react-native/docs/overview)
19
+ [> GitHub](https://github.com/New-Elysium/notifee)
20
+ [> Join the Club](https://psync.club)
15
21
 
16
22
  ## Platform Requirements
17
23
 
18
24
  | Requirement | Minimum Version |
19
25
  |-------------|-----------------|
20
- | React Native | 0.76+ (New Architecture enabled) |
21
- | iOS Deployment Target | 15.0+ |
22
- | Android minSdk | 23+ |
26
+ | React Native | 0.83+ (New Architecture only!) |
27
+ | iOS Deployment Target | 15.1+ |
28
+ | Android minSdk | 28+ |
23
29
  | Xcode | 16.2+ (for iOS development) |
24
30
 
25
31
  ## Installation
26
32
 
33
+ ```bash
34
+ npm install @psync/notifee
35
+ ```
36
+
27
37
  ```bash
28
38
  yarn add @psync/notifee
29
39
  ```
30
40
 
41
+ ```bash
42
+ bun add @psync/notifee
43
+ ```
31
44
  ## Documentation
32
45
 
33
46
  - [Overview](https://notifee.app/react-native/docs/overview)
34
- - [Licensing](https://notifee.app/react-native/docs/license-keys)
35
47
  - [Reference](https://notifee.app/react-native/reference)
36
48
 
37
49
  ### Android
@@ -133,9 +145,9 @@ The important part is to make sure you have a `__notifee_notification` object un
133
145
  ---
134
146
 
135
147
  <p>
136
- <img align="left" width="50px" src="https://static.invertase.io/assets/invertase/invertase-rounded.png">
148
+ <img align="left" width="50px" src="https://psync.club/favicon.ico">
137
149
  <p align="left">
138
- Built and maintained with 💛 by <a href="https://invertase.io">Invertase</a>.
150
+ Built by <a href="https://invertase.io">Invertase</a> and maintained with 💖 by <a href="https://psync.club">Psync</a>.
139
151
  </p>
140
152
  </p>
141
153
 
@@ -38,6 +38,9 @@ def findNodeModulePath(baseDir, packageName) {
38
38
  def notifeeDir = findNodeModulePath(projectDir, "@psync/notifee") ?: "$rootDir/../node_modules/@psync/notifee"
39
39
  println ":${project.name} @psync/notifee found at $notifeeDir"
40
40
 
41
+ def notifeeLibsDir = new File("$notifeeDir/android/libs")
42
+ def hasNotifeeCore = notifeeLibsDir.exists() && notifeeLibsDir.isDirectory()
43
+
41
44
  if (project.hasProperty('reactNativeProjects')) {
42
45
  reactNativeProjects.each { dependent ->
43
46
  project.evaluationDependsOn(dependent)
@@ -92,7 +95,7 @@ repositories {
92
95
  dependencies {
93
96
  if (findProject(':notifee_core')) {
94
97
  implementation findProject(':notifee_core')
95
- } else {
98
+ } else if (hasNotifeeCore) {
96
99
  implementation(group: 'app.notifee', name:'core', version: '+')
97
100
  }
98
101
 
@@ -109,8 +112,10 @@ ReactNative.module.applyAndroidVersions()
109
112
  ReactNative.module.applyReactNativeDependency("api")
110
113
  rootProject.allprojects {
111
114
  repositories {
112
- maven {
113
- url "$notifeeDir/android/libs"
115
+ if (hasNotifeeCore) {
116
+ maven {
117
+ url "$notifeeDir/android/libs"
118
+ }
114
119
  }
115
120
  }
116
121
  }
@@ -0,0 +1 @@
1
+ fd645b32afd04e981fb5a4bc28189fdc
@@ -0,0 +1 @@
1
+ 912a1880c767f1be668c16a9014edb07f395c9f7
@@ -0,0 +1 @@
1
+ 5f9a16efd8fa6fd02f74025a828998616e191f94d7973b1e30acc6baf7360c2f
@@ -0,0 +1 @@
1
+ 62f2e12b27a944d70f18c50277f75c9627d4fc2467fd1448be7af66405a34320cbec4d96b0d6a0fb7e36cb01d159ff061702101e1499d823f83be910930f7ebb
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4
+ <modelVersion>4.0.0</modelVersion>
5
+ <groupId>app.notifee</groupId>
6
+ <artifactId>core</artifactId>
7
+ <version>202108261754</version>
8
+ <packaging>aar</packaging>
9
+ </project>
@@ -0,0 +1 @@
1
+ 4f6e0cf891e903f91ee3093356815b7a
@@ -0,0 +1 @@
1
+ 692dedb13cd922156e38dc5f6bcfba86e4141932
@@ -0,0 +1 @@
1
+ 4f7ea80d7045abd14e8a836ec3a8299a245994b8bbcff7e30d2e3ae7f523c9ec
@@ -0,0 +1 @@
1
+ 79244ae770a7c732e5eb33d72ca3e707398ae33d0db8e104d63690fecdb156d9cc040571f09baab30ffb19db3ac00b0283b74f581c1245069b4bf477c590732b
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <metadata>
3
+ <groupId>app.notifee</groupId>
4
+ <artifactId>core</artifactId>
5
+ <versioning>
6
+ <latest>202108261754</latest>
7
+ <release>202108261754</release>
8
+ <versions>
9
+ <version>202108261754</version>
10
+ </versions>
11
+ <lastUpdated>20260315031459</lastUpdated>
12
+ </versioning>
13
+ </metadata>
@@ -0,0 +1 @@
1
+ e5f3da142d413ad453c57bdb9a61ba6e
@@ -0,0 +1 @@
1
+ 222db59007fc16500307fe838e03c952066a549b
@@ -0,0 +1 @@
1
+ 9e5ce497956d46a02e8cf6860021a437cdc158e3b5bbfb93cc5b7b63a5ab7b9a
@@ -0,0 +1 @@
1
+ 7c82a4f46755ba253e2f125208d613a2f2c156a8468698b15c6eda6b154616ec919d28531179632fce4d2f1e82d8f452c3f5dfb2c98e2550e620323513a0fb04
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const version = "9.2.0";
1
+ export declare const version = "9.2.1";
package/dist/version.js CHANGED
@@ -2,5 +2,5 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.version = void 0;
4
4
  // Generated by genversion.
5
- exports.version = '9.2.0';
5
+ exports.version = '9.2.1';
6
6
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@psync/notifee",
3
- "version": "9.2.0",
3
+ "version": "9.2.1",
4
4
  "author": "Psync <oss@psync.dev> (https://psync.club)",
5
5
  "description": "Notifee - a feature rich notifications library for React Native.",
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.2.0';
2
+ export const version = '9.2.1';