Skip to content

Commit

Permalink
Pushwoosh Titanium 6.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins CI committed Mar 2, 2023
1 parent 56fa73f commit 892d5d5
Show file tree
Hide file tree
Showing 91 changed files with 171 additions and 109 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.4.4"
pushwoosh = "6.6.9"
}

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.9
version: 6.1.0
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.9
version: 6.1.0
apiversion: 2
architectures: armv7 arm64 i386 x86_64
description: PushwooshGeozones
Expand Down
13 changes: 13 additions & 0 deletions Module-Source/ios/Library/PWNotificationExtensionManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,19 @@ NS_ASSUME_NONNULL_BEGIN
*/
- (void)handleNotificationRequest:(UNNotificationRequest *)request contentHandler:(void (^)(UNNotificationContent *))contentHandler;

/**
Example:
@code
- (void)didReceiveNotificationRequest:(UNNotificationRequest *)request withContentHandler:(void (^)(UNNotificationContent * _Nonnull))contentHandler {
self.contentHandler = contentHandler;
self.bestAttemptContent = [request.content mutableCopy];
[[PWNotificationExtensionManager sharedManager] handleNotificationRequest:request withAppGroups:@"group.com.example_domain.example_app_name."];
}
@endcode
*/
- (void)handleNotificationRequest:(UNNotificationRequest *)request withAppGroups:(NSString * _Nullable)appGroupsName;

@end

NS_ASSUME_NONNULL_END
8 changes: 0 additions & 8 deletions Module-Source/ios/Library/PushNotificationManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -385,14 +385,6 @@ typedef void (^PushwooshErrorHandler)(NSError *error);
*/
- (void)sendAppOpen;

/**
Sends current badge value to server. Called internally by SDK Runtime when `UIApplication` `setApplicationBadgeNumber:` is set. This function is used for "auto-incremeting" badges to work.
This way Pushwoosh server can know what current badge value is set for the application.
@param badge Current badge value.
*/
- (void)sendBadges:(NSInteger)badge __API_AVAILABLE(macos(10.10), ios(8.0));

+ (NSString *)pushwooshVersion;

#if TARGET_OS_IOS
Expand Down
Loading

0 comments on commit 892d5d5

Please sign in to comment.