cordova-plugin-appice 2.2.0 → 2.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/example/package.json +2 -2
- package/package.json +1 -1
- package/plugin.xml +1 -1
- package/src/ios/AppICEPlugin.m +1 -1
package/example/package.json
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"cordova-android": "^10.1.2",
|
|
17
17
|
"cordova-ios": "^6.3.0",
|
|
18
|
-
"cordova-plugin-appice": "^2.
|
|
18
|
+
"cordova-plugin-appice": "^2.2.1",
|
|
19
19
|
"cordova-plugin-device": "^2.1.0",
|
|
20
20
|
"cordova-plugin-dialogs": "^2.0.2",
|
|
21
21
|
"cordova-plugin-file": "^7.0.0",
|
|
@@ -36,4 +36,4 @@
|
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
|
-
}
|
|
39
|
+
}
|
package/package.json
CHANGED
package/plugin.xml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
2
|
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
|
3
|
-
id="cordova-plugin-appice" version="2.2.
|
|
3
|
+
id="cordova-plugin-appice" version="2.2.1">
|
|
4
4
|
<name>AppICE</name>
|
|
5
5
|
<description>AppICE Plugin for Cordova/PhoneGap</description>
|
|
6
6
|
<license>Commercial</license>
|
package/src/ios/AppICEPlugin.m
CHANGED
|
@@ -1123,7 +1123,7 @@ static NSDictionary *pendingDeeplink = nil;
|
|
|
1123
1123
|
NSLog(@"Deeplink Push STATE 4: processPendingDeeplink called, isAppInitialized: %d, pendingDeeplink: %@", isAppInitialized, pendingDeeplink);
|
|
1124
1124
|
if (isAppInitialized && pendingDeeplink) {
|
|
1125
1125
|
NSLog(@"Deeplink Push : STATE 4 handled stored data");
|
|
1126
|
-
[[appICE sharedInstance] handleClickOnPush:
|
|
1126
|
+
[[appICE sharedInstance] handleClickOnPush:pendingDeeplink OpenDeepLink:YES];
|
|
1127
1127
|
[self eventClickedPayload:pendingDeeplink];
|
|
1128
1128
|
|
|
1129
1129
|
pendingDeeplink = nil;
|