Skip to content

Commit

Permalink
Pushwoosh Cordova Plugin 7.18.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins CI committed Oct 31, 2019
1 parent 5f17839 commit ea1712a
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 20 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,21 @@ Cross-Platform push notifications by Pushwoosh for Cordova / PhoneGap
Using npm (requires cordova 7.0+):

```
cordova plugin add pushwoosh-cordova-plugin@7.18.2
cordova plugin add pushwoosh-cordova-plugin@7.18.3
```

Using git:

```
cordova plugin add https://github.com/Pushwoosh/pushwoosh-phonegap-plugin.git#7.18.2
cordova plugin add https://github.com/Pushwoosh/pushwoosh-phonegap-plugin.git#7.18.3
```

#### Phonegap

Using npm (requires phonegap 7.1+):

```
cordova plugin add pushwoosh-cordova-plugin@7.18.2
cordova plugin add pushwoosh-cordova-plugin@7.18.3
```

### Guide
Expand Down
2 changes: 1 addition & 1 deletion README_PGB.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Cross-Platform push notifications by Pushwoosh for PhoneGap
Using npm (requires cordova 5.0+):

```
cordova plugin add pushwoosh-pgb-plugin@7.18.2
cordova plugin add pushwoosh-pgb-plugin@7.18.3
```

### Guide
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pushwoosh-cordova-plugin",
"version": "7.18.2",
"version": "7.18.3",
"description": "\n This plugin allows you to send and receive push notifications. Powered by Pushwoosh (www.pushwoosh.com).\n ",
"cordova": {
"id": "pushwoosh-cordova-plugin",
Expand Down
12 changes: 6 additions & 6 deletions plugin.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="pushwoosh-cordova-plugin" version="7.18.2">
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="pushwoosh-cordova-plugin" version="7.18.3">

<name>Pushwoosh</name>

Expand Down Expand Up @@ -65,11 +65,11 @@
<framework src="com.android.support.constraint:constraint-layout:1.0.2" />
<framework src="com.github.bumptech.glide:glide:4.7.1" />
<framework src="org.jetbrains.kotlin:kotlin-stdlib-jre7:1.1.60" />
<framework src="com.pushwoosh:pushwoosh:5.19.0"/>
<framework src="com.pushwoosh:pushwoosh-amazon:5.19.0"/>
<framework src="com.pushwoosh:pushwoosh-badge:5.19.0"/>
<framework src="com.pushwoosh:pushwoosh-inbox:5.19.0"/>
<framework src="com.pushwoosh:pushwoosh-inbox-ui:5.19.0"/>
<framework src="com.pushwoosh:pushwoosh:5.19.5"/>
<framework src="com.pushwoosh:pushwoosh-amazon:5.19.5"/>
<framework src="com.pushwoosh:pushwoosh-badge:5.19.5"/>
<framework src="com.pushwoosh:pushwoosh-inbox:5.19.5"/>
<framework src="com.pushwoosh:pushwoosh-inbox-ui:5.19.5"/>
</platform>

<!-- ios -->
Expand Down
12 changes: 4 additions & 8 deletions src/ios/Pushwoosh.framework/Versions/A/Headers/PWInAppManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@
//

#import <Foundation/Foundation.h>

#if TARGET_OS_IPHONE

#import <WebKit/WebKit.h>
/**
`PWJavaScriptInterface` protocol is a representation of Javascript object that can be added at runtime into In-App Message HTML page
to provide native calls and callbacks to Objective-C/Swift.
Expand Down Expand Up @@ -43,17 +41,17 @@
/**
Tells the delegate that In-App Message load stated
*/
- (void)onWebViewStartLoad:(UIWebView*)webView;
- (void)onWebViewStartLoad:(WKWebView *)webView;

/**
Tells the delegate that In-App Message load finished
*/
- (void)onWebViewFinishLoad:(UIWebView*)webView;
- (void)onWebViewFinishLoad:(WKWebView *)webView;

/**
Tells the delegate that In-App Message is closing
*/
- (void)onWebViewStartClose:(UIWebView*)webView;
- (void)onWebViewStartClose:(WKWebView *)webView;

@end

Expand All @@ -79,8 +77,6 @@

@end

#endif


/*
`PWInAppManager` class offers access to the singleton-instance of the inapp messages manager responsible for sending events and managing inapp message notifications.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ typedef NS_ENUM(NSUInteger, PWRichMediaSource) {
*/
@property (nonatomic, readonly) NSString *content;

/**
Payload of the associated push notification if source is equal to PWRichMediaSourcePush.
*/
@property (nonatomic, readonly) NSDictionary *pushPayload;

/**
Checks if PWRichMediaSourceInApp is a required In-App. Always returns YES for PWRichMediaSourcePush.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#import <UserNotifications/UserNotifications.h>
#endif

#define PUSHWOOSH_VERSION @"5.19.0"
#define PUSHWOOSH_VERSION @"5.19.3"


@class PushNotificationManager;
Expand Down
Binary file modified src/ios/Pushwoosh.framework/Versions/A/libPushwoosh.a
Binary file not shown.

0 comments on commit ea1712a

Please sign in to comment.