Skip to content

Commit 6f3e0d2

Browse files
author
Edward Smith
committed
Release 0.22.2.
1 parent 7a4d2fb commit 6f3e0d2

File tree

7 files changed

+31
-57
lines changed

7 files changed

+31
-57
lines changed

Branch.framework/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
<key>CFBundlePackageType</key>
1818
<string>FMWK</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>0.21.16</string>
20+
<string>0.22.2</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>0.21.16</string>
24+
<string>0.22.2</string>
2525
<key>LSRequiresIPhoneOS</key>
2626
<true/>
2727
<key>NSHumanReadableCopyright</key>

Branch.framework/Versions/A/Branch

-18.9 KB
Binary file not shown.

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
#import "BranchUniversalObject.h"
3636
#import "BranchView.h"
3737
#import "BranchViewHandler.h"
38+
#import "UIViewController+Branch.h"
3839

3940
/**
4041
`Branch` is the primary interface of the Branch iOS SDK. Currently, all interactions you will make are funneled through this class. It is not meant to be instantiated or subclassed, usage should be limited to the global instance.

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,11 @@ FOUNDATION_EXPORT BranchCondition _Nonnull BranchConditionRefurbished;
184184
andCallback:(void (^_Nullable)(NSString * _Nullable url, NSError * _Nullable error))callback;
185185

186186
/// Returns a Branch long URL to the content item
187-
- (nullable NSString *)getLongUrlWithChannel:(nullable NSString *)channel andTags:(nullable NSArray *)tags andFeature:(nullable NSString *)feature andStage:(nullable NSString *)stage andAlias:(nullable NSString *)alia;
187+
- (nullable NSString *)getLongUrlWithChannel:(nullable NSString *)channel
188+
andTags:(nullable NSArray *)tags
189+
andFeature:(nullable NSString *)feature
190+
andStage:(nullable NSString *)stage
191+
andAlias:(nullable NSString *)alias;
188192

189193
/// @name Share Sheet Handling
190194

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

Lines changed: 0 additions & 52 deletions
This file was deleted.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
//
2+
// UIViewController+Branch.h
3+
// Branch-SDK
4+
//
5+
// Created by Edward Smith on 11/16/17.
6+
// Copyright © 2017 Branch. All rights reserved.
7+
//
8+
9+
#if __has_feature(modules)
10+
@import UIKit;
11+
#else
12+
#import <UIKit/UIKit.h>
13+
#endif
14+
15+
@interface UIViewController (Branch)
16+
+ (UIWindow*_Nullable) bnc_currentWindow;
17+
+ (UIViewController*_Nullable) bnc_currentViewController;
18+
- (UIViewController*_Nonnull) bnc_currentViewController;
19+
@end
20+
21+
void BNCForceUIViewControllerCategoryToLoad(void) __attribute__((constructor));

checksum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#checksum for Branch-iOS-SDK found at https://s3-us-west-1.amazonaws.com/branchhost/Branch-iOS-SDK.zip
2-
85eefede256cd243096362f01c98524929d97fcc Branch-iOS-SDK.zip
2+
1f54deb4a0da9c4c94c256b4ceed8bffd91d74fe Branch-iOS-SDK.zip
33
#checksum for Branch-iOS-TestBed found at https://s3-us-west-1.amazonaws.com/branchhost/Branch-iOS-TestBed.zip
4-
cbd6aa31893fa7db634f55fbedd377d7233f6779 Branch-iOS-TestBed.zip
4+
9232b0c782d2061ab41496daa7b1f0c26b03d078 Branch-iOS-TestBed.zip

0 commit comments

Comments
 (0)