Skip to content

Commit

Permalink
Updated minimum iOS version support to 12.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mahesh Bijapur committed Jan 4, 2023
1 parent b2f9efe commit 301ea72
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 26 deletions.
9 changes: 1 addition & 8 deletions Marketo.framework/Headers/Marketo.h
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,6 @@
*/
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation;

/*!
* Override System's didReceiveLocalNotification method to Operate PushNotification
* @param application The singleton app object
* @param notification UILocalNotification object supplied by the source app.
*/
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification;

/*!
* Override System's userNotificationCenter method to Operate PushNotification
* @param center The UNUserNotificationCenter object supplied by the source app.
Expand All @@ -117,7 +110,7 @@
*/
- (void)userNotificationCenter:(UNUserNotificationCenter *)center
didReceiveNotificationResponse:(UNNotificationResponse *)response
withCompletionHandler:(void(^)())completionHandler;
withCompletionHandler:(void(^)(void))completionHandler;
/*!
* Set security Signature for Authentication
* @param token - The Security Token recived from client server
Expand Down
Binary file modified Marketo.framework/Marketo
Binary file not shown.
9 changes: 1 addition & 8 deletions Marketo.framework/Versions/A/Headers/Marketo.h
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,6 @@
*/
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation;

/*!
* Override System's didReceiveLocalNotification method to Operate PushNotification
* @param application The singleton app object
* @param notification UILocalNotification object supplied by the source app.
*/
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification;

/*!
* Override System's userNotificationCenter method to Operate PushNotification
* @param center The UNUserNotificationCenter object supplied by the source app.
Expand All @@ -117,7 +110,7 @@
*/
- (void)userNotificationCenter:(UNUserNotificationCenter *)center
didReceiveNotificationResponse:(UNNotificationResponse *)response
withCompletionHandler:(void(^)())completionHandler;
withCompletionHandler:(void(^)(void))completionHandler;
/*!
* Set security Signature for Authentication
* @param token - The Security Token recived from client server
Expand Down
Binary file modified Marketo.framework/Versions/A/Marketo
Binary file not shown.
9 changes: 1 addition & 8 deletions Marketo.framework/Versions/Current/Headers/Marketo.h
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,6 @@
*/
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation;

/*!
* Override System's didReceiveLocalNotification method to Operate PushNotification
* @param application The singleton app object
* @param notification UILocalNotification object supplied by the source app.
*/
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification;

/*!
* Override System's userNotificationCenter method to Operate PushNotification
* @param center The UNUserNotificationCenter object supplied by the source app.
Expand All @@ -117,7 +110,7 @@
*/
- (void)userNotificationCenter:(UNUserNotificationCenter *)center
didReceiveNotificationResponse:(UNNotificationResponse *)response
withCompletionHandler:(void(^)())completionHandler;
withCompletionHandler:(void(^)(void))completionHandler;
/*!
* Set security Signature for Authentication
* @param token - The Security Token recived from client server
Expand Down
Binary file modified Marketo.framework/Versions/Current/Marketo
Binary file not shown.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ Installation instructions and more are [here](http://developers.marketo.com/docu

Change Log

v0.8.3 (Jan 04, 2022)

- Updated minimum iOS version support to 12.0.

v0.8.2 (July 26, 2021)

- Updated version number for SDK.
Expand Down
4 changes: 2 additions & 2 deletions ios-sdk-debug.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "ios-sdk-debug"
s.version = "0.8.2"
s.version = "0.8.3"
s.summary = "Add Marketo Mobile Engagement to your project."
s.description = <<-DESC
MarketoPod provides the following features:
Expand All @@ -23,7 +23,7 @@ s.author = { "Marketo" => "mbijapur@marketo.com" }
s.source = { :git => "https://github.com/Marketo/ios-sdk-debug.git", :tag => s.version, :branch => 'master' }
s.source_files = 'Marketo.framework/**/*.h'

s.platform = :ios, '10'
s.platform = :ios, '12'
s.requires_arc = false

s.preserve_paths = 'Marketo.framework'
Expand Down

0 comments on commit 301ea72

Please sign in to comment.