Skip to content

Commit

Permalink
1.2.16
Browse files Browse the repository at this point in the history
  • Loading branch information
afirst committed Oct 9, 2014
1 parent 5a55170 commit 1d85ffe
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
6 changes: 3 additions & 3 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.2.15'
s.version = '1.2.16'
s.summary = 'Mobile A/B testing, personalization & analytics in one powerful platform.'
s.description = 'Leanplum! Mobile A/B testing, personalization & analytics in one powerful platform.'
s.homepage = 'https://www.leanplum.com'
Expand All @@ -9,9 +9,9 @@ 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.2.15'}
s.source = { :git => 'https://github.com/Leanplum/Leanplum-iOS-SDK.git', :tag => '1.2.16'}
s.frameworks = 'CFNetwork', 'Foundation', 'Security', 'SystemConfiguration', 'UIKit'
s.weak_frameworks = 'AdSupport', 'StoreKit'
s.weak_frameworks = 'AdSupport', 'StoreKit', 'CoreLocation'
s.xcconfig = { 'OTHER_LDFLAGS' => '-ObjC' }
s.preserve_paths = 'Leanplum.framework'
s.documentation_url = 'https://www.leanplum.com/docs#/docs'
Expand Down
16 changes: 15 additions & 1 deletion 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.2.15
// Leanplum iOS SDK Version 1.2.16
//
// Copyright (c) 2014 Leanplum. All rights reserved.
//
Expand Down Expand Up @@ -315,6 +315,20 @@ typedef enum {
+ (void)handleNotification:(NSDictionary *)userInfo
fetchCompletionHandler:(LeanplumFetchCompletionBlock)completionHandler;

/**
* Call this to handle custom actions for local notifications.
*/
+ (void)handleActionWithIdentifier:(NSString *)identifier
forLocalNotification:(UILocalNotification *)notification
completionHandler:(void (^)())completionHandler;

/**
* Call this to handle custom actions for remote notifications.
*/
+ (void)handleActionWithIdentifier:(NSString *)identifier
forRemoteNotification:(NSDictionary *)notification
completionHandler:(void (^)())completionHandler;

/*
* Block to call that decides whether a notification should be displayed when it is
* received while the app is running, and the notification is not muted.
Expand Down
Binary file modified Leanplum.framework/Leanplum
Binary file not shown.

0 comments on commit 1d85ffe

Please sign in to comment.