Skip to content

Commit

Permalink
1.3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
agyorev committed May 27, 2016
1 parent 8802a5e commit d259fdd
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Leanplum-iOS-SDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Leanplum-iOS-SDK'
s.version = '1.3.10.1'
s.version = '1.3.11'
s.summary = 'Mobile Marketing Platform. Integrated. ROI Engine.'
s.description = 'Leanplum’s integrated solution delivers meaningful engagement across messaging and the in-app experience. We offer Messaging, Automation, App Editing, Personalization, A/B Testing, and Analytics.'
s.homepage = 'https://www.leanplum.com'
Expand All @@ -9,7 +9,7 @@ Pod::Spec.new do |s|
s.social_media_url = 'https://twitter.com/leanplum'
s.platform = :ios, '5.0'
s.requires_arc = true
s.source = { :git => 'https://github.com/Leanplum/Leanplum-iOS-SDK.git', :tag => '1.3.10.1'}
s.source = { :git => 'https://github.com/Leanplum/Leanplum-iOS-SDK.git', :tag => '1.3.11'}
s.frameworks = 'CFNetwork', 'Foundation', 'Security', 'SystemConfiguration', 'UIKit'
s.weak_frameworks = 'AdSupport', 'StoreKit'
s.xcconfig = { 'OTHER_LDFLAGS' => '-ObjC' }
Expand Down
12 changes: 10 additions & 2 deletions Leanplum.framework/Headers/Leanplum.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// Leanplum.h
// Leanplum iOS SDK Version 1.3.10.1
// Leanplum iOS SDK Version 1.3.11
//
// Copyright (c) 2016 Leanplum. All rights reserved.
//
Expand Down Expand Up @@ -360,9 +360,17 @@ typedef enum {
/**
* Handles a push notification for apps that use Background Notifications.
* Without background notifications, Leanplum handles them automatically.
* Deprecated. Leanplum calls handleNotification automatically now. If you
* implement application:didReceiveRemoteNotification:fetchCompletionHandler:
* in your app delegate, you should remove any calls to [Leanplum handleNotification]
* and call the completion handler yourself.
*/
+ (void)handleNotification:(NSDictionary *)userInfo
fetchCompletionHandler:(LeanplumFetchCompletionBlock)completionHandler;
fetchCompletionHandler:(LeanplumFetchCompletionBlock)completionHandler
__attribute__((deprecated("Leanplum calls handleNotification automatically now. If you "
"implement application:didReceiveRemoteNotification:fetchCompletionHandler: in your app "
"delegate, you should remove any calls to [Leanplum handleNotification] and call the "
"completion handler yourself.")));

#if LP_NOT_TV
/**
Expand Down
Binary file modified Leanplum.framework/Leanplum
Binary file not shown.

0 comments on commit d259fdd

Please sign in to comment.