Skip to content

Commit c5275be

Browse files
committed
Updates for 0.12.4 release.
1 parent 6090f9a commit c5275be

File tree

11 files changed

+16
-253
lines changed

11 files changed

+16
-253
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.3"
12+
#define SDK_VERSION @"0.12.4"
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
@@ -1284,7 +1284,7 @@ + (NSString *)bundleIdentifier {
12841284
}
12851285

12861286
+ (NSString *)kitDisplayVersion {
1287-
return @"0.12.0";
1287+
return @"0.12.4";
12881288
}
12891289

1290-
@end
1290+
@end

Branch-TestBed/Branch-TestBed/Branch-TestBed-Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<key>CFBundlePackageType</key>
2020
<string>APPL</string>
2121
<key>CFBundleShortVersionString</key>
22-
<string>0.12.0</string>
22+
<string>0.12.4</string>
2323
<key>CFBundleSignature</key>
2424
<string>????</string>
2525
<key>CFBundleURLTypes</key>

Branch.framework/Versions/A/Branch

-1.23 MB
Binary file not shown.

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

Lines changed: 2 additions & 2 deletions
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.3"
12+
#define SDK_VERSION @"0.12.4"
1313

1414
#define BNC_PROD_ENV
1515
//#define BNC_STAGE_ENV
@@ -20,7 +20,7 @@
2020
#endif
2121

2222
#ifdef BNC_STAGE_ENV
23-
#define BNC_API_BASE_URL @"http://api.dev.branchmetrics.io"
23+
#define BNC_API_BASE_URL @"http://api.dev.branch.io"
2424
#endif
2525

2626
#define BNC_LINK_URL @"https://bnc.lt"

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

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
@interface BNCPreferenceHelper : NSObject
1515

1616
@property (strong, nonatomic) NSString *branchKey;
17-
@property (strong, nonatomic) NSString *appKey;
1817
@property (strong, nonatomic) NSString *lastRunBranchKey;
1918
@property (strong, nonatomic) NSDate *lastStrongMatchDate;
2019
@property (strong, nonatomic) NSString *appVersion;
@@ -28,8 +27,6 @@
2827
@property (strong, nonatomic) NSString *userIdentity;
2928
@property (strong, nonatomic) NSString *sessionParams;
3029
@property (strong, nonatomic) NSString *installParams;
31-
@property (assign, nonatomic) BOOL explicitlyRequestedReferrable;
32-
@property (assign, nonatomic) BOOL isReferrable;
3330
@property (assign, nonatomic) BOOL isDebug;
3431
@property (assign, nonatomic) BOOL shouldWaitForInit;
3532
@property (assign, nonatomic) BOOL suppressWarningLogs;
@@ -43,6 +40,8 @@
4340

4441
- (NSString *)getAPIBaseURL;
4542
- (NSString *)getAPIURL:(NSString *)endpoint;
43+
- (NSString *)getEndpointFromURL:(NSString *)url;
44+
4645
- (NSString *)getBranchKey:(BOOL)isLive;
4746

4847
- (void)clearUserCreditsAndCounts;
@@ -57,17 +56,16 @@
5756
- (NSInteger)getCreditCount;
5857
- (NSInteger)getCreditCountForBucket:(NSString *)bucket;
5958

60-
- (void)setActionTotalCount:(NSString *)action withCount:(NSInteger)count;
61-
- (void)setActionUniqueCount:(NSString *)action withCount:(NSInteger)count;
62-
- (NSInteger)getActionTotalCount:(NSString *)action;
63-
- (NSInteger)getActionUniqueCount:(NSString *)action;
64-
6559
- (void)updateBranchViewCount:(NSString *)branchViewID;
6660
- (NSInteger)getBranchViewCount:(NSString *)branchViewID;
6761

6862
- (void)setRequestMetadataKey:(NSString *)key value:(NSObject *)value;
6963
- (NSMutableDictionary *)requestMetadataDictionary;
7064

65+
- (void)addInstrumentationDictionaryKey:(NSString *)key value:(NSString *)value;
66+
- (NSMutableDictionary *)instrumentationDictionary;
67+
- (void)clearInstrumentationDictionary;
68+
7169
- (void)log:(NSString *)filename line:(int)line message:(NSString *)format, ...;
7270
- (void)logWarning:(NSString *)message;
7371
@end

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

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,6 @@
1212

1313
typedef void (^BNCServerCallback)(BNCServerResponse *response, NSError *error);
1414

15-
static NSString *REQ_TAG_DEBUG_CONNECT = @"t_debug_connect";
16-
static NSString *REQ_TAG_DEBUG_LOG = @"t_debug_log";
17-
static NSString *REQ_TAG_DEBUG_SCREEN = @"t_debug_screen";
18-
static NSString *REQ_TAG_DEBUG_DISCONNECT = @"t_debug_disconnect";
19-
2015
@interface BNCServerInterface : NSObject
2116

2217
@property (strong, nonatomic) BNCPreferenceHelper *preferenceHelper;

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

Lines changed: 0 additions & 228 deletions
Large diffs are not rendered by default.

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ typedef NS_ENUM(NSInteger, ContentIndexMode) {
4848

4949
- (UIActivityItemProvider *)getBranchActivityItemWithLinkProperties:(BranchLinkProperties *)linkProperties;
5050

51-
- (void)showShareSheetWithShareText:(NSString *)shareText andCallback:(callback)callback __attribute__((deprecated(("This method has been deprecated. Use -[showShareSheetWithShareText:completion:] instead."))));
52-
- (void)showShareSheetWithLinkProperties:(BranchLinkProperties *)linkProperties andShareText:(NSString *)shareText fromViewController:(UIViewController *)viewController andCallback:(callback)callback __attribute__((deprecated(("This method has been deprecated. Use -[showShareSheetWithLinkProperties:andShareText:fromViewController:viewController:completion:] instead."))));
5351
- (void)showShareSheetWithShareText:(NSString *)shareText completion:(shareCompletion)completion;
5452
- (void)showShareSheetWithLinkProperties:(BranchLinkProperties *)linkProperties andShareText:(NSString *)shareText fromViewController:(UIViewController *)viewController completion:(shareCompletion)completion;
5553
//iPad

Branch.podspec

Lines changed: 1 addition & 3 deletions
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.3"
3+
s.version = "0.12.4"
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?
@@ -16,8 +16,6 @@ Use the Branch SDK (branch.io) to create and power the links that point back to
1616
s.license = 'Proprietary'
1717
s.author = { "Branch" => "[email protected]" }
1818
s.source = { :git => "https://github.com/BranchMetrics/iOS-Deferred-Deep-Linking-SDK.git", :tag => s.version.to_s }
19-
s.social_media_url = 'https://www.linkedin.com/company/3813083'
20-
2119
s.platform = :ios, '6.0'
2220
s.requires_arc = true
2321

0 commit comments

Comments
 (0)