Skip to content

Commit 301ea72

Browse files
author
Mahesh Bijapur
committed
Updated minimum iOS version support to 12.0.
1 parent b2f9efe commit 301ea72

File tree

8 files changed

+9
-26
lines changed

8 files changed

+9
-26
lines changed

Marketo.framework/Headers/Marketo.h

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,6 @@
102102
*/
103103
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation;
104104

105-
/*!
106-
* Override System's didReceiveLocalNotification method to Operate PushNotification
107-
* @param application The singleton app object
108-
* @param notification UILocalNotification object supplied by the source app.
109-
*/
110-
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification;
111-
112105
/*!
113106
* Override System's userNotificationCenter method to Operate PushNotification
114107
* @param center The UNUserNotificationCenter object supplied by the source app.
@@ -117,7 +110,7 @@
117110
*/
118111
- (void)userNotificationCenter:(UNUserNotificationCenter *)center
119112
didReceiveNotificationResponse:(UNNotificationResponse *)response
120-
withCompletionHandler:(void(^)())completionHandler;
113+
withCompletionHandler:(void(^)(void))completionHandler;
121114
/*!
122115
* Set security Signature for Authentication
123116
* @param token - The Security Token recived from client server

Marketo.framework/Marketo

-10.8 MB
Binary file not shown.

Marketo.framework/Versions/A/Headers/Marketo.h

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,6 @@
102102
*/
103103
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation;
104104

105-
/*!
106-
* Override System's didReceiveLocalNotification method to Operate PushNotification
107-
* @param application The singleton app object
108-
* @param notification UILocalNotification object supplied by the source app.
109-
*/
110-
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification;
111-
112105
/*!
113106
* Override System's userNotificationCenter method to Operate PushNotification
114107
* @param center The UNUserNotificationCenter object supplied by the source app.
@@ -117,7 +110,7 @@
117110
*/
118111
- (void)userNotificationCenter:(UNUserNotificationCenter *)center
119112
didReceiveNotificationResponse:(UNNotificationResponse *)response
120-
withCompletionHandler:(void(^)())completionHandler;
113+
withCompletionHandler:(void(^)(void))completionHandler;
121114
/*!
122115
* Set security Signature for Authentication
123116
* @param token - The Security Token recived from client server
-10.8 MB
Binary file not shown.

Marketo.framework/Versions/Current/Headers/Marketo.h

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,6 @@
102102
*/
103103
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation;
104104

105-
/*!
106-
* Override System's didReceiveLocalNotification method to Operate PushNotification
107-
* @param application The singleton app object
108-
* @param notification UILocalNotification object supplied by the source app.
109-
*/
110-
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification;
111-
112105
/*!
113106
* Override System's userNotificationCenter method to Operate PushNotification
114107
* @param center The UNUserNotificationCenter object supplied by the source app.
@@ -117,7 +110,7 @@
117110
*/
118111
- (void)userNotificationCenter:(UNUserNotificationCenter *)center
119112
didReceiveNotificationResponse:(UNNotificationResponse *)response
120-
withCompletionHandler:(void(^)())completionHandler;
113+
withCompletionHandler:(void(^)(void))completionHandler;
121114
/*!
122115
* Set security Signature for Authentication
123116
* @param token - The Security Token recived from client server
-10.8 MB
Binary file not shown.

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ Installation instructions and more are [here](http://developers.marketo.com/docu
66

77
Change Log
88

9+
v0.8.3 (Jan 04, 2022)
10+
11+
- Updated minimum iOS version support to 12.0.
12+
913
v0.8.2 (July 26, 2021)
1014

1115
- Updated version number for SDK.

ios-sdk-debug.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "ios-sdk-debug"
3-
s.version = "0.8.2"
3+
s.version = "0.8.3"
44
s.summary = "Add Marketo Mobile Engagement to your project."
55
s.description = <<-DESC
66
MarketoPod provides the following features:
@@ -23,7 +23,7 @@ s.author = { "Marketo" => "mbijapur@marketo.com" }
2323
s.source = { :git => "https://github.com/Marketo/ios-sdk-debug.git", :tag => s.version, :branch => 'master' }
2424
s.source_files = 'Marketo.framework/**/*.h'
2525

26-
s.platform = :ios, '10'
26+
s.platform = :ios, '12'
2727
s.requires_arc = false
2828

2929
s.preserve_paths = 'Marketo.framework'

0 commit comments

Comments
 (0)