Skip to content

Commit 7d8e8f5

Browse files
author
Edward Smith
committed
Updates for 0.12.16 release.
1 parent fbb8341 commit 7d8e8f5

File tree

7 files changed

+20
-5
lines changed

7 files changed

+20
-5
lines changed

Branch-SDK/Branch-SDK/BNCConfig.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#ifndef Branch_SDK_Config_h
1010
#define Branch_SDK_Config_h
1111

12-
#define SDK_VERSION @"0.12.15"
12+
#define SDK_VERSION @"0.12.16"
1313

1414
#define BNC_PROD_ENV
1515
//#define BNC_STAGE_ENV

Branch-SDK/Branch-SDK/Branch.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1433,7 +1433,7 @@ + (NSString *)bundleIdentifier {
14331433
}
14341434

14351435
+ (NSString *)kitDisplayVersion {
1436-
return @"0.12.15";
1436+
return @"0.12.16";
14371437
}
14381438

1439-
@end
1439+
@end

Branch.framework/Versions/A/Branch

178 KB
Binary file not shown.

Branch.framework/Versions/A/Headers/BNCConfig.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#ifndef Branch_SDK_Config_h
1010
#define Branch_SDK_Config_h
1111

12-
#define SDK_VERSION @"0.12.15"
12+
#define SDK_VERSION @"0.12.16"
1313

1414
#define BNC_PROD_ENV
1515
//#define BNC_STAGE_ENV

Branch.framework/Versions/A/Headers/BNCPreferenceHelper.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
@property (strong, nonatomic) NSString *externalIntentURI;
3838
@property (strong, nonatomic) NSMutableDictionary *savedAnalyticsData;
3939
@property (assign, nonatomic) NSInteger installRequestDelay;
40+
@property (strong, nonatomic) NSDictionary *appleSearchAdDetails;
4041

4142
+ (BNCPreferenceHelper *)preferenceHelper;
4243
+ (NSURL*) URLForBranchDirectory;

Branch.framework/Versions/A/Headers/Branch.h

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -406,6 +406,19 @@ typedef NS_ENUM(NSUInteger, BranchCreditHistoryOrder) {
406406
*/
407407
- (void)registerFacebookDeepLinkingClass:(id)FBSDKAppLinkUtility;
408408

409+
/**
410+
Check for Apple Search Ads before initialization. Will add about 1 second from call to initSession to callback due to Apple's latency.
411+
*/
412+
- (void)delayInitToCheckForSearchAds;
413+
414+
/**
415+
Set the SDK into Apple Search Ad debug mode where it passes fake campaign params back 100%
416+
417+
@warning This should not be used in production.
418+
*/
419+
- (void)setAppleSearchAdsDebugMode;
420+
421+
409422
/**
410423
Specify the time to wait in seconds between retries in the case of a Branch server error
411424
@@ -469,6 +482,7 @@ typedef NS_ENUM(NSUInteger, BranchCreditHistoryOrder) {
469482

470483
- (void)setInstallRequestDelay:(NSInteger)installRequestDelay;
471484

485+
472486
#pragma mark - Session Item methods
473487

474488
///--------------------

Branch.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Branch"
3-
s.version = "0.12.15"
3+
s.version = "0.12.16"
44
s.summary = "Create an HTTP URL for any piece of content in your app"
55
s.description = <<-DESC
66
- Want the highest possible conversions on your sharing feature?

0 commit comments

Comments
 (0)