Skip to content

Commit

Permalink
Updates for 0.12.16 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Edward Smith committed Nov 9, 2016
1 parent fbb8341 commit 7d8e8f5
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Branch-SDK/Branch-SDK/BNCConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#ifndef Branch_SDK_Config_h
#define Branch_SDK_Config_h

#define SDK_VERSION @"0.12.15"
#define SDK_VERSION @"0.12.16"

#define BNC_PROD_ENV
//#define BNC_STAGE_ENV
Expand Down
4 changes: 2 additions & 2 deletions Branch-SDK/Branch-SDK/Branch.m
Original file line number Diff line number Diff line change
Expand Up @@ -1433,7 +1433,7 @@ + (NSString *)bundleIdentifier {
}

+ (NSString *)kitDisplayVersion {
return @"0.12.15";
return @"0.12.16";
}

@end
@end
Binary file modified Branch.framework/Versions/A/Branch
Binary file not shown.
2 changes: 1 addition & 1 deletion Branch.framework/Versions/A/Headers/BNCConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#ifndef Branch_SDK_Config_h
#define Branch_SDK_Config_h

#define SDK_VERSION @"0.12.15"
#define SDK_VERSION @"0.12.16"

#define BNC_PROD_ENV
//#define BNC_STAGE_ENV
Expand Down
1 change: 1 addition & 0 deletions Branch.framework/Versions/A/Headers/BNCPreferenceHelper.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
@property (strong, nonatomic) NSString *externalIntentURI;
@property (strong, nonatomic) NSMutableDictionary *savedAnalyticsData;
@property (assign, nonatomic) NSInteger installRequestDelay;
@property (strong, nonatomic) NSDictionary *appleSearchAdDetails;

+ (BNCPreferenceHelper *)preferenceHelper;
+ (NSURL*) URLForBranchDirectory;
Expand Down
14 changes: 14 additions & 0 deletions Branch.framework/Versions/A/Headers/Branch.h
Original file line number Diff line number Diff line change
Expand Up @@ -406,6 +406,19 @@ typedef NS_ENUM(NSUInteger, BranchCreditHistoryOrder) {
*/
- (void)registerFacebookDeepLinkingClass:(id)FBSDKAppLinkUtility;

/**
Check for Apple Search Ads before initialization. Will add about 1 second from call to initSession to callback due to Apple's latency.
*/
- (void)delayInitToCheckForSearchAds;

/**
Set the SDK into Apple Search Ad debug mode where it passes fake campaign params back 100%
@warning This should not be used in production.
*/
- (void)setAppleSearchAdsDebugMode;


/**
Specify the time to wait in seconds between retries in the case of a Branch server error
Expand Down Expand Up @@ -469,6 +482,7 @@ typedef NS_ENUM(NSUInteger, BranchCreditHistoryOrder) {

- (void)setInstallRequestDelay:(NSInteger)installRequestDelay;


#pragma mark - Session Item methods

///--------------------
Expand Down
2 changes: 1 addition & 1 deletion Branch.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Branch"
s.version = "0.12.15"
s.version = "0.12.16"
s.summary = "Create an HTTP URL for any piece of content in your app"
s.description = <<-DESC
- Want the highest possible conversions on your sharing feature?
Expand Down

0 comments on commit 7d8e8f5

Please sign in to comment.