@capacitor/local-notifications 7.0.4 → 7.0.6
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
CHANGED
|
@@ -42,7 +42,7 @@ android {
|
|
|
42
42
|
buildTypes {
|
|
43
43
|
release {
|
|
44
44
|
minifyEnabled false
|
|
45
|
-
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
45
|
+
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
48
|
lintOptions {
|
|
@@ -141,7 +141,7 @@ public class LocalNotificationsPlugin extends Plugin {
|
|
|
141
141
|
JSObject extras = new JSObject();
|
|
142
142
|
|
|
143
143
|
for (String key : notification.extras.keySet()) {
|
|
144
|
-
extras.put(key, notification.extras.
|
|
144
|
+
extras.put(key, notification.extras.get(key));
|
|
145
145
|
}
|
|
146
146
|
|
|
147
147
|
jsNotif.put("data", extras);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capacitor/local-notifications",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.6",
|
|
4
4
|
"description": "The Local Notifications API provides a way to schedule device notifications locally (i.e. without a server sending push notifications).",
|
|
5
5
|
"main": "dist/plugin.cjs.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -82,5 +82,5 @@
|
|
|
82
82
|
"publishConfig": {
|
|
83
83
|
"access": "public"
|
|
84
84
|
},
|
|
85
|
-
"gitHead": "
|
|
85
|
+
"gitHead": "78a4a360a0ef77fc659ffbedf24af3114cc7ca72"
|
|
86
86
|
}
|