Skip to content

Commit 2a6f36e

Browse files
committed
Updates for 0.11.16 release.
1 parent c7c5afd commit 2a6f36e

File tree

6 files changed

+7
-71
lines changed

6 files changed

+7
-71
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.11.15"
12+
#define SDK_VERSION @"0.11.16"
1313

1414
#define BNC_PROD_ENV
1515
//#define BNC_STAGE_ENV

Branch.framework/Versions/A/Branch

-39.9 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.11.15"
12+
#define SDK_VERSION @"0.11.16"
1313

1414
#define BNC_PROD_ENV
1515
//#define BNC_STAGE_ENV

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

Lines changed: 0 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -241,13 +241,6 @@ typedef NS_ENUM(NSUInteger, BranchPromoCodeUsageType) {
241241
/// @name Initialization
242242
///---------------------
243243

244-
/**
245-
Just initialize the Branch session.
246-
247-
@warning This is not the recommended method of initializing Branch, as you potentially lose deep linking info, and any ability to do anything with the callback.
248-
*/
249-
- (void)initSession;
250-
251244
/**
252245
Just initialize the Branch session with the app launch options.
253246
@@ -256,30 +249,6 @@ typedef NS_ENUM(NSUInteger, BranchPromoCodeUsageType) {
256249
*/
257250
- (void)initSessionWithLaunchOptions:(NSDictionary *)options;
258251

259-
/**
260-
Just initialize the Branch session, specifying whether to allow it to be treated as a referral.
261-
262-
@param isReferrable Boolean representing whether to allow the session to be marked as referred, overriding the default behavior.
263-
@warning This is not the recommended method of initializing Branch, as you potentially lose deep linking info, and any ability to do anything with the callback.
264-
*/
265-
- (void)initSession:(BOOL)isReferrable;
266-
267-
/**
268-
Just initialize the Branch session, specifying whether to allow it to automatically display matching deep linked controllers
269-
270-
@param automaticallyDisplayController Boolean indicating whether we will automatically launch into deep linked controller matched in the init session dictionary.
271-
@warning This is not the recommended method of initializing Branch, as you potentially lose deep linking info by not passing the launch options.
272-
*/
273-
- (void)initSessionAndAutomaticallyDisplayDeepLinkController:(BOOL)automaticallyDisplayController;
274-
275-
/**
276-
Initialize the Branch session and handle the completion with a callback
277-
278-
@param callback A callback that is called when the session is opened. This will be called multiple times during the apps life, including any time the app goes through a background / foreground cycle.
279-
@warning This is not the recommended method of initializing Branch, as you potentially lose deep linking info by not passing the launch options.
280-
*/
281-
- (void)initSessionAndRegisterDeepLinkHandler:(callbackWithParams)callback;
282-
283252
/**
284253
Just initialize the Branch session with the app launch options, specifying whether to allow it to be treated as a referral.
285254
@@ -289,15 +258,6 @@ typedef NS_ENUM(NSUInteger, BranchPromoCodeUsageType) {
289258
*/
290259
- (void)initSessionWithLaunchOptions:(NSDictionary *)options isReferrable:(BOOL)isReferrable;
291260

292-
/**
293-
Initialize the Branch session and handle the completion with a callback
294-
295-
@param isReferrable Boolean representing whether to allow the session to be marked as referred, overriding the default behavior.
296-
@param callback A callback that is called when the session is opened. This will be called multiple times during the apps life, including any time the app goes through a background / foreground cycle.
297-
@warning This is not the recommended method of initializing Branch, as you potentially lose deep linking info by not passing the launch options.
298-
*/
299-
- (void)initSession:(BOOL)isReferrable andRegisterDeepLinkHandler:(callbackWithParams)callback;
300-
301261
/**
302262
Initialize the Branch session with the app launch options and handle the completion with a callback
303263
@@ -322,24 +282,6 @@ typedef NS_ENUM(NSUInteger, BranchPromoCodeUsageType) {
322282
*/
323283
- (void)initSessionWithLaunchOptions:(NSDictionary *)options automaticallyDisplayDeepLinkController:(BOOL)automaticallyDisplayController;
324284

325-
/**
326-
Initialize the Branch session and handle the completion with a callback
327-
328-
@param isReferrable Boolean representing whether to allow the session to be marked as referred, overriding the default behavior.
329-
@param automaticallyDisplayController Boolean indicating whether we will automatically launch into deep linked controller matched in the init session dictionary.
330-
@warning This is not the recommended method of initializing Branch, as you potentially lose deep linking info by not passing the launch options.
331-
*/
332-
- (void)initSession:(BOOL)isReferrable automaticallyDisplayDeepLinkController:(BOOL)automaticallyDisplayController;
333-
334-
/**
335-
Initialize the Branch session and handle the completion with a callback
336-
337-
@param automaticallyDisplayController Boolean indicating whether we will automatically launch into deep linked controller matched in the init session dictionary.
338-
@param callback A callback that is called when the session is opened. This will be called multiple times during the apps life, including any time the app goes through a background / foreground cycle.
339-
@warning This is not the recommended method of initializing Branch, as you potentially lose deep linking info by not passing the launch options.
340-
*/
341-
- (void)initSessionAndAutomaticallyDisplayDeepLinkController:(BOOL)automaticallyDisplayController deepLinkHandler:(callbackWithParams)callback;
342-
343285
/**
344286
Initialize the Branch session with the app launch options and handle the completion with a callback
345287
@@ -367,16 +309,6 @@ typedef NS_ENUM(NSUInteger, BranchPromoCodeUsageType) {
367309
*/
368310
- (void)initSessionWithLaunchOptions:(NSDictionary *)options automaticallyDisplayDeepLinkController:(BOOL)automaticallyDisplayController deepLinkHandler:(callbackWithParams)callback;
369311

370-
/**
371-
Initialize the Branch session with the app launch options and handle the completion with a callback
372-
373-
@param automaticallyDisplayController Boolean indicating whether we will automatically launch into deep linked controller matched in the init session dictionary.
374-
@param isReferrable Boolean representing whether to allow the session to be marked as referred, overriding the default behavior.
375-
@param callback A callback that is called when the session is opened. This will be called multiple times during the apps life, including any time the app goes through a background / foreground cycle.
376-
@warning This is not the recommended method of initializing Branch, as you potentially lose deep linking info by not passing the launch options.
377-
*/
378-
- (void)initSessionAndAutomaticallyDisplayDeepLinkController:(BOOL)automaticallyDisplayController isReferrable:(BOOL)isReferrable deepLinkHandler:(callbackWithParams)callback;
379-
380312
/**
381313
Initialize the Branch session with the app launch options and handle the completion with a callback
382314

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.11.15"
3+
s.version = "0.11.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?

ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
Branch iOS SDK change log
22

3+
- v0.11.16
4+
* increased timeout for SFSafariViewController
5+
* removed init session methods that do not use launchOptions
6+
37
- v0.11.15
48
* improvements on share sheet
59
* Slack bug fix

0 commit comments

Comments
 (0)