Skip to content

Commit

Permalink
Pushwoosh Titanium 6.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins CI committed Sep 20, 2021
1 parent d0d12a6 commit cbb5efc
Show file tree
Hide file tree
Showing 93 changed files with 84 additions and 70 deletions.
2 changes: 1 addition & 1 deletion Module-Geozones-Source/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ext {
pushwoosh = "6.2.7"
pushwoosh = "6.3.3"
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion Module-Geozones-Source/android/manifest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# this is your module manifest and used by Titanium
# during compilation, packaging, distribution, etc.
#
version: 6.0.4
version: 6.0.5
apiversion: 4
architectures: arm64-v8a armeabi-v7a x86 x86_64
description: pushwoosh_geozones
Expand Down
Binary file modified Module-Geozones-Source/ios/Library/libPushwooshGeozones.a
Binary file not shown.
2 changes: 1 addition & 1 deletion Module-Geozones-Source/ios/manifest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# this is your module manifest and used by Titanium
# during compilation, packaging, distribution, etc.
#
version: 6.0.4
version: 6.0.5
apiversion: 2
architectures: armv7 arm64 i386 x86_64
description: PushwooshGeozones
Expand Down
2 changes: 1 addition & 1 deletion Module-Source/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ext {
pushwoosh = "6.2.7"
pushwoosh = "6.3.3"
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion Module-Source/android/manifest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# this is your module manifest and used by Titanium
# during compilation, packaging, distribution, etc.
#
version: 6.0.4
version: 6.0.5
apiversion: 4
architectures: arm64-v8a armeabi-v7a x86 x86_64
description: pushnotifications
Expand Down
18 changes: 13 additions & 5 deletions Module-Source/ios/Library/PWRichMediaStyle.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
//

#import <Foundation/Foundation.h>

#if TARGET_OS_IOS || TARGET_OS_WATCH
#import <UIKit/UIKit.h>
#endif

FOUNDATION_EXPORT NSTimeInterval const PWRichMediaStyleDefaultAnimationDuration;

Expand All @@ -17,13 +20,14 @@ FOUNDATION_EXPORT NSTimeInterval const PWRichMediaStyleDefaultAnimationDuration;
/**
This method can be used to animate Rich Media presenting view.
*/
#if TARGET_OS_IOS || TARGET_OS_WATCH
- (void)runPresentingAnimationWithContentView:(UIView *)contentView parentView:(UIView *)parentView completion:(dispatch_block_t)completion;

/**
This method can be used to animate Rich Media dismissing view.
*/
- (void)runDismissingAnimationWithContentView:(UIView *)contentView parentView:(UIView *)parentView completion:(dispatch_block_t)completion;

#endif
@end

/**
Expand Down Expand Up @@ -52,17 +56,16 @@ FOUNDATION_EXPORT NSTimeInterval const PWRichMediaStyleDefaultAnimationDuration;
/**
Custom Rich Media loading view. It is shown while Rich Media is loading.
*/
#if TARGET_OS_IOS || TARGET_OS_WATCH
@interface PWLoadingView : UIView

@property (nonatomic) IBOutlet UIActivityIndicatorView *activityIndicatorView;
@property (nonatomic) IBOutlet UIButton *cancelLoadingButton;

@end


typedef PWLoadingView *(^PWRichMediaLoadingViewBlock)(void);


#endif
/**
'PWRichMediaStyle' class allows customizing the appearance of Rich Media pages.
*/
Expand All @@ -71,7 +74,11 @@ typedef PWLoadingView *(^PWRichMediaLoadingViewBlock)(void);
/**
Background color of Rich Media pages.
*/
#if TARGET_OS_IOS || TARGET_OS_WATCH
@property (nonatomic) UIColor *backgroundColor;
#elif TARGET_OS_OSX
@property (nonatomic) NSColor *backgroundColor;
#endif

/**
Delegate to manage Rich Media presenting animation.
Expand All @@ -88,8 +95,9 @@ typedef PWLoadingView *(^PWRichMediaLoadingViewBlock)(void);
};
@endcode
*/
#if TARGET_OS_IOS
@property (nonatomic) PWRichMediaLoadingViewBlock loadingViewBlock;

#endif
/**
Delay of the close button presenting in seconds.
*/
Expand Down
32 changes: 19 additions & 13 deletions Module-Source/ios/Library/Pushwoosh.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@

#endif


#define PUSHWOOSH_VERSION @"6.1.1"
#define PUSHWOOSH_VERSION @"6.2.5"


@class Pushwoosh, PWMessage, PWNotificationCenterDelegateProxy;
Expand Down Expand Up @@ -391,15 +390,6 @@ Unregisters from push notifications.
*/
- (void)setUser:(NSString *)userId email:(NSString *)email completion:(void(^)(NSError * error))completion;

/**
Set User indentifier. This could be Facebook ID, username or email, or any other user ID.
This allows data and events to be matched across multiple user devices.
@param userId user identifier
@param email user's email string
*/
- (void)setUser:(NSString *)userId email:(NSString *)email;

/**
Register emails list associated to the current user.
If setEmails succeeds competion is called with nil argument. If setEmails fails completion is called with error.
Expand Down Expand Up @@ -440,20 +430,35 @@ Unregisters from push notifications.
*/
- (void)mergeUserId:(NSString *)oldUserId to:(NSString *)newUserId doMerge:(BOOL)doMerge completion:(void (^)(NSError *error))completion;

/**
Starts communication with Pushwoosh server.
*/
- (void)startServerCommunication;

/**
Stops communication with Pushwoosh server.
*/
- (void)stopServerCommunication;

/**
Process URL of some deep link. Primarly used for register test devices.
@param url Deep Link URL
*/
#if TARGET_OS_IOS || TARGET_OS_WATCH
- (BOOL)handleOpenURL:(NSURL *)url;
#endif

@end

/**
`PWNotificationCenterDelegateProxy` class handles notifications on iOS 10 and forwards methods of UNUserNotificationCenterDelegate to all added delegates.
*/
#if TARGET_OS_IOS || TARGET_OS_WATCH
@interface PWNotificationCenterDelegateProxy : NSObject <UNUserNotificationCenterDelegate>

#elif TARGET_OS_OSX
@interface PWNotificationCenterDelegateProxy : NSObject <NSUserNotificationCenterDelegate>
#endif
/**
Returns UNUserNotificationCenterDelegate that handles foreground push notifications on iOS10
*/
Expand All @@ -466,8 +471,9 @@ Unregisters from push notifications.
/**
Adds extra UNUserNotificationCenterDelegate that handles foreground push notifications on iOS10.
*/
#if TARGET_OS_IOS || TARGET_OS_WATCH
- (void)addNotificationCenterDelegate:(id<UNUserNotificationCenterDelegate>)delegate;

#endif
@end


Expand Down
Binary file modified Module-Source/ios/Library/libPushwoosh.a
Binary file not shown.
2 changes: 1 addition & 1 deletion Module-Source/ios/manifest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# this is your module manifest and used by Titanium
# during compilation, packaging, distribution, etc.
#
version: 6.0.4
version: 6.0.5
apiversion: 2
architectures: armv7 arm64 i386 x86_64
description: PushwooshModule
Expand Down
Binary file not shown.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
f380a52e99b2965e632eb2a5728bf6bd
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
c2bb5bab64ef1b754dec0573bc83836b901078cb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
797a3c19ddb0e4ba5244882132387888eb4251276cf20e95fcf22d7032adfd6a
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
de36e201272c702991d020134f84756e8dac1c5bb25d30ff2ee6045eba37aba7b4d0a0cb0d9c8d07680b3d39a08059ebd551d50d9c2ce766586fcf4e7aa64afa
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.pushwoosh</groupId>
<artifactId>geozones</artifactId>
<version>6.0.4</version>
<version>6.0.5</version>
<packaging>aar</packaging>
<dependencies>
<dependency>
Expand All @@ -19,7 +19,7 @@
<dependency>
<groupId>com.pushwoosh</groupId>
<artifactId>pushwoosh-location</artifactId>
<version>6.2.7</version>
<version>6.3.3</version>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
6c0ff6fdbd849939c587fee195701d84
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
66216f834427c31a55a150410d3ae6b4764e82f6
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bd4372c2c7b83e39736de09fc8d733d99b9eb05da4ff780d4fdee718af364cd7
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
04bf4ba0a9fb3642255c5e63e0c452f26deaebec72ef63a16b194373ebde10723c9a653fc6c6f50893bbb1d6f61ad77cd7dd0553f8a26c8fdc4d387e6a75e72b
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<groupId>com.pushwoosh</groupId>
<artifactId>geozones</artifactId>
<versioning>
<latest>6.0.4</latest>
<release>6.0.4</release>
<latest>6.0.5</latest>
<release>6.0.5</release>
<versions>
<version>6.0.4</version>
<version>6.0.5</version>
</versions>
<lastUpdated>20210408121720</lastUpdated>
<lastUpdated>20210920073713</lastUpdated>
</versioning>
</metadata>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
e78ef3ebc75eca136bd633f485359894
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
700b4892c04abb209bda7417a93a42d084ccc83f
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
73677d2ce3ba2910d8906a47971ace543207bd6cadae014eabf45df3399c572c
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
f5f39465d9de7935f355a4a6e7a9ab7d5b21f61271f89eb18d59375ab03166a3498ff4d9e834200793c661dfa0ce869e94e6b9bf06cfc978ae6a69edc5ba1aa8
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# this is your module manifest and used by Titanium
# during compilation, packaging, distribution, etc.
#
version: 6.0.4
version: 6.0.5
apiversion: 4
architectures: arm64-v8a armeabi-v7a x86 x86_64
description: pushwoosh_geozones
Expand Down
Binary file not shown.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
9f4ce532e9fb04d85b3c59aff6b5ac93
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
7bc1dd1940a1b898f7412c9c3fb6d449a2e606c1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
63a1fdedf20cdbcf80d6127d425947ecdf640e1f2691da5a861079cdd03bb554
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
8187844df925723e84182bd31fa465398fc1b187bafc07d4398dc61060e82e12de69f30ae23ddd522117f242aafea525eeaf138c5214204c42d067162adef9f7
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.pushwoosh</groupId>
<artifactId>module</artifactId>
<version>6.0.4</version>
<version>6.0.5</version>
<packaging>aar</packaging>
<dependencies>
<dependency>
Expand All @@ -19,27 +19,27 @@
<dependency>
<groupId>com.pushwoosh</groupId>
<artifactId>pushwoosh</artifactId>
<version>6.2.7</version>
<version>6.3.3</version>
</dependency>
<dependency>
<groupId>com.pushwoosh</groupId>
<artifactId>pushwoosh-firebase</artifactId>
<version>6.2.7</version>
<version>6.3.3</version>
</dependency>
<dependency>
<groupId>com.pushwoosh</groupId>
<artifactId>pushwoosh-amazon</artifactId>
<version>6.2.7</version>
<version>6.3.3</version>
</dependency>
<dependency>
<groupId>com.pushwoosh</groupId>
<artifactId>pushwoosh-badge</artifactId>
<version>6.2.7</version>
<version>6.3.3</version>
</dependency>
<dependency>
<groupId>com.google.firebase</groupId>
<artifactId>firebase-messaging</artifactId>
<version>(+,20.2.2)</version>
<version>(+,20.0.99]</version>
</dependency>
</dependencies>
</project>
Loading

0 comments on commit cbb5efc

Please sign in to comment.