react-native-notify-kit 9.1.17 → 9.1.18
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/android/build.gradle +10 -2
- package/android/libs/app/notifee/core/202108261754/core-202108261754.module +146 -0
- package/android/libs/app/notifee/core/202108261754/core-202108261754.module.md5 +1 -0
- package/android/libs/app/notifee/core/202108261754/core-202108261754.module.sha1 +1 -0
- package/android/libs/app/notifee/core/202108261754/core-202108261754.module.sha256 +1 -0
- package/android/libs/app/notifee/core/202108261754/core-202108261754.module.sha512 +1 -0
- package/android/libs/app/notifee/core/202108261754/core-202108261754.pom +55 -0
- package/android/libs/app/notifee/core/202108261754/core-202108261754.pom.md5 +1 -1
- package/android/libs/app/notifee/core/202108261754/core-202108261754.pom.sha1 +1 -1
- package/android/libs/app/notifee/core/202108261754/core-202108261754.pom.sha256 +1 -1
- package/android/libs/app/notifee/core/202108261754/core-202108261754.pom.sha512 +1 -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/package.json +1 -1
- package/src/version.ts +1 -1
package/android/build.gradle
CHANGED
|
@@ -98,12 +98,20 @@ dependencies {
|
|
|
98
98
|
implementation(group: 'app.notifee', name:'core', version: '+')
|
|
99
99
|
}
|
|
100
100
|
|
|
101
|
-
implementation("com.google.guava:guava:33.
|
|
101
|
+
implementation("com.google.guava:guava:33.5.0-android") // https://github.com/google/guava
|
|
102
102
|
implementation 'androidx.concurrent:concurrent-futures:1.1.0' // https://developer.android.com/jetpack/androidx/releases/concurrent
|
|
103
|
-
implementation 'androidx.work:work-runtime:2.
|
|
103
|
+
implementation 'androidx.work:work-runtime:2.11.1' // https://developer.android.com/jetpack/androidx/releases/work
|
|
104
104
|
implementation 'org.greenrobot:eventbus:3.3.1' // https://github.com/greenrobot/EventBus/releases
|
|
105
105
|
implementation 'androidx.lifecycle:lifecycle-process:2.3.1'
|
|
106
106
|
|
|
107
|
+
// NotifeeCoreDatabase_Impl is generated against Room 2.8.4's RoomOpenDelegate API
|
|
108
|
+
// (stable since Room 2.6.0). If bumping this version, verify the generated _Impl class
|
|
109
|
+
// is still binary-compatible by running yarn smoke:android. A future Room 3.0 with
|
|
110
|
+
// breaking changes will require regenerating and republishing the core AAR.
|
|
111
|
+
api 'androidx.room:room-runtime:2.8.4' // https://developer.android.com/jetpack/androidx/releases/room
|
|
112
|
+
api 'androidx.sqlite:sqlite:2.6.2' // https://developer.android.com/jetpack/androidx/releases/sqlite
|
|
113
|
+
api 'androidx.sqlite:sqlite-framework:2.6.2'
|
|
114
|
+
|
|
107
115
|
//noinspection GradleDynamicVersion
|
|
108
116
|
implementation 'com.facebook.react:react-android:+'
|
|
109
117
|
}
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
{
|
|
2
|
+
"formatVersion": "1.1",
|
|
3
|
+
"component": {
|
|
4
|
+
"group": "app.notifee",
|
|
5
|
+
"module": "core",
|
|
6
|
+
"version": "202108261754",
|
|
7
|
+
"attributes": {
|
|
8
|
+
"org.gradle.status": "release"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"createdBy": {
|
|
12
|
+
"gradle": {
|
|
13
|
+
"version": "8.9"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"variants": [
|
|
17
|
+
{
|
|
18
|
+
"name": "releaseVariantReleaseApiPublication",
|
|
19
|
+
"attributes": {
|
|
20
|
+
"org.gradle.category": "library",
|
|
21
|
+
"org.gradle.dependency.bundling": "external",
|
|
22
|
+
"org.gradle.libraryelements": "aar",
|
|
23
|
+
"org.gradle.usage": "java-api"
|
|
24
|
+
},
|
|
25
|
+
"dependencies": [
|
|
26
|
+
{
|
|
27
|
+
"group": "androidx.annotation",
|
|
28
|
+
"module": "annotation",
|
|
29
|
+
"version": {
|
|
30
|
+
"requires": "1.3.0"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"group": "androidx.concurrent",
|
|
35
|
+
"module": "concurrent-futures",
|
|
36
|
+
"version": {
|
|
37
|
+
"requires": "1.1.0"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"group": "androidx.work",
|
|
42
|
+
"module": "work-runtime",
|
|
43
|
+
"version": {
|
|
44
|
+
"requires": "2.11.1"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"group": "org.greenrobot",
|
|
49
|
+
"module": "eventbus",
|
|
50
|
+
"version": {
|
|
51
|
+
"requires": "3.3.1"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
"files": [
|
|
56
|
+
{
|
|
57
|
+
"name": "core-202108261754.aar",
|
|
58
|
+
"url": "core-202108261754.aar",
|
|
59
|
+
"size": 111102,
|
|
60
|
+
"sha512": "1d8f512300ff5e2b4202297161433d5e888cb8ac08c88665f3d6529401addc3933ec9cbcb6280590eb3a29fe5720974badf5ad6868d9224cbbc42e302a09a54a",
|
|
61
|
+
"sha256": "3991dd1a50f953426099e68c0f10be525d8482b5537148b95b20b4b2684a49e8",
|
|
62
|
+
"sha1": "67639050c2e0d75dca80a55e0b0b94895c2345cb",
|
|
63
|
+
"md5": "9468015f44d6b97412f8213b087d0631"
|
|
64
|
+
}
|
|
65
|
+
]
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"name": "releaseVariantReleaseRuntimePublication",
|
|
69
|
+
"attributes": {
|
|
70
|
+
"org.gradle.category": "library",
|
|
71
|
+
"org.gradle.dependency.bundling": "external",
|
|
72
|
+
"org.gradle.libraryelements": "aar",
|
|
73
|
+
"org.gradle.usage": "java-runtime"
|
|
74
|
+
},
|
|
75
|
+
"dependencies": [
|
|
76
|
+
{
|
|
77
|
+
"group": "com.facebook.fresco",
|
|
78
|
+
"module": "fresco",
|
|
79
|
+
"version": {
|
|
80
|
+
"requires": "2.6.0"
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"group": "com.google.guava",
|
|
85
|
+
"module": "guava",
|
|
86
|
+
"version": {
|
|
87
|
+
"requires": "33.5.0-android"
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"group": "androidx.core",
|
|
92
|
+
"module": "core",
|
|
93
|
+
"version": {
|
|
94
|
+
"requires": "1.6.0"
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"group": "androidx.room",
|
|
99
|
+
"module": "room-runtime",
|
|
100
|
+
"version": {
|
|
101
|
+
"requires": "2.8.4"
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"group": "androidx.annotation",
|
|
106
|
+
"module": "annotation",
|
|
107
|
+
"version": {
|
|
108
|
+
"requires": "1.3.0"
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"group": "androidx.concurrent",
|
|
113
|
+
"module": "concurrent-futures",
|
|
114
|
+
"version": {
|
|
115
|
+
"requires": "1.1.0"
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"group": "androidx.work",
|
|
120
|
+
"module": "work-runtime",
|
|
121
|
+
"version": {
|
|
122
|
+
"requires": "2.11.1"
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"group": "org.greenrobot",
|
|
127
|
+
"module": "eventbus",
|
|
128
|
+
"version": {
|
|
129
|
+
"requires": "3.3.1"
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
],
|
|
133
|
+
"files": [
|
|
134
|
+
{
|
|
135
|
+
"name": "core-202108261754.aar",
|
|
136
|
+
"url": "core-202108261754.aar",
|
|
137
|
+
"size": 111102,
|
|
138
|
+
"sha512": "1d8f512300ff5e2b4202297161433d5e888cb8ac08c88665f3d6529401addc3933ec9cbcb6280590eb3a29fe5720974badf5ad6868d9224cbbc42e302a09a54a",
|
|
139
|
+
"sha256": "3991dd1a50f953426099e68c0f10be525d8482b5537148b95b20b4b2684a49e8",
|
|
140
|
+
"sha1": "67639050c2e0d75dca80a55e0b0b94895c2345cb",
|
|
141
|
+
"md5": "9468015f44d6b97412f8213b087d0631"
|
|
142
|
+
}
|
|
143
|
+
]
|
|
144
|
+
}
|
|
145
|
+
]
|
|
146
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
c6eecaa505bd498b12e517b333882ef1
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
5396351020c86a1474d5d6c951032bd17554e6ff
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3de70fee67c7617ccd0ff0f55150a475ebc3cfee2edd5fc0148080c1cd56bf84
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
8eaec6eaae40863c87ad9a9b4d0d63ec83c8abc8dd638da4ce2eb7f4b729953290824b74a06f0ad0c0cccae2c0dae341afe2df1da1115de107899a61ffc385ee
|
|
@@ -1,9 +1,64 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
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
3
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
4
|
+
<!-- This module was also published with a richer model, Gradle metadata, -->
|
|
5
|
+
<!-- which should be used instead. Do not delete the following line which -->
|
|
6
|
+
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
|
|
7
|
+
<!-- that they should prefer consuming it instead. -->
|
|
8
|
+
<!-- do_not_remove: published-with-gradle-metadata -->
|
|
4
9
|
<modelVersion>4.0.0</modelVersion>
|
|
5
10
|
<groupId>app.notifee</groupId>
|
|
6
11
|
<artifactId>core</artifactId>
|
|
7
12
|
<version>202108261754</version>
|
|
8
13
|
<packaging>aar</packaging>
|
|
14
|
+
<dependencies>
|
|
15
|
+
<dependency>
|
|
16
|
+
<groupId>androidx.annotation</groupId>
|
|
17
|
+
<artifactId>annotation</artifactId>
|
|
18
|
+
<version>1.3.0</version>
|
|
19
|
+
<scope>compile</scope>
|
|
20
|
+
</dependency>
|
|
21
|
+
<dependency>
|
|
22
|
+
<groupId>androidx.concurrent</groupId>
|
|
23
|
+
<artifactId>concurrent-futures</artifactId>
|
|
24
|
+
<version>1.1.0</version>
|
|
25
|
+
<scope>compile</scope>
|
|
26
|
+
</dependency>
|
|
27
|
+
<dependency>
|
|
28
|
+
<groupId>androidx.work</groupId>
|
|
29
|
+
<artifactId>work-runtime</artifactId>
|
|
30
|
+
<version>2.11.1</version>
|
|
31
|
+
<scope>compile</scope>
|
|
32
|
+
</dependency>
|
|
33
|
+
<dependency>
|
|
34
|
+
<groupId>org.greenrobot</groupId>
|
|
35
|
+
<artifactId>eventbus</artifactId>
|
|
36
|
+
<version>3.3.1</version>
|
|
37
|
+
<scope>compile</scope>
|
|
38
|
+
</dependency>
|
|
39
|
+
<dependency>
|
|
40
|
+
<groupId>com.facebook.fresco</groupId>
|
|
41
|
+
<artifactId>fresco</artifactId>
|
|
42
|
+
<version>2.6.0</version>
|
|
43
|
+
<scope>runtime</scope>
|
|
44
|
+
</dependency>
|
|
45
|
+
<dependency>
|
|
46
|
+
<groupId>com.google.guava</groupId>
|
|
47
|
+
<artifactId>guava</artifactId>
|
|
48
|
+
<version>33.5.0-android</version>
|
|
49
|
+
<scope>runtime</scope>
|
|
50
|
+
</dependency>
|
|
51
|
+
<dependency>
|
|
52
|
+
<groupId>androidx.core</groupId>
|
|
53
|
+
<artifactId>core</artifactId>
|
|
54
|
+
<version>1.6.0</version>
|
|
55
|
+
<scope>runtime</scope>
|
|
56
|
+
</dependency>
|
|
57
|
+
<dependency>
|
|
58
|
+
<groupId>androidx.room</groupId>
|
|
59
|
+
<artifactId>room-runtime</artifactId>
|
|
60
|
+
<version>2.8.4</version>
|
|
61
|
+
<scope>runtime</scope>
|
|
62
|
+
</dependency>
|
|
63
|
+
</dependencies>
|
|
9
64
|
</project>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
7d300b913b5c8bd22ad71a3309447696
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
bdca30e0d4ba2b33343222240ac9dc21cbbacd30
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
610b38be2d82362746d852773251f4eb3b4ad075b18d7a728a0ea00b5b325dc2
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
cf367df7043fea90e97189801fb17c10dff34e063f7a9323a7a635426591d56cfb727fbca0f48ab8241bc2cba59f6fc175ac4e57ae8d2fc1f114f764401c2c8b
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
3553cc9e541e77dea48d442435182698
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
879a87ce2b5f7b3ba31835c21e32b210e515a194
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
0be7dc41132d3ee9a88860262d976d3cd70ca9b35750224f8c95af25cd2640ce
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
d6bbe466c3193aeb1792e89518c79f44e87b24cc4f3829832dbc415c1633938aa0c78e0dec91b1daa3511427e9f9b2138572bc89c6dc8477e5809e8e4bc76712
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "9.1.
|
|
1
|
+
export declare const version = "9.1.18";
|
package/dist/version.js
CHANGED
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.18';
|