Skip to content

Commit 0d97d48

Browse files
committed
Release 0.34.0.
1 parent b567319 commit 0d97d48

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+3972
-43
lines changed

.circleci/config.yml

Lines changed: 0 additions & 35 deletions
This file was deleted.

Branch-SDK/BNCConfig.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
NSString * const BNC_API_BASE_URL = @"https://api2.branch.io";
1212
NSString * const BNC_API_VERSION = @"v1";
1313
NSString * const BNC_LINK_URL = @"https://bnc.lt";
14-
NSString * const BNC_SDK_VERSION = @"0.33.1";
14+
NSString * const BNC_SDK_VERSION = @"0.34.0";

Branch.framework/Branch

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Versions/Current/Branch

Branch.framework/Headers

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Versions/Current/Headers

Branch.framework/Info.plist

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleDisplayName</key>
6+
<string>Branch</string>
7+
<key>CFBundleExecutable</key>
8+
<string>Branch</string>
9+
<key>CFBundleGetInfoString</key>
10+
<string>The Branch iOS SDK Framework</string>
11+
<key>CFBundleIdentifier</key>
12+
<string>io.branch.sdk.ios</string>
13+
<key>CFBundleInfoDictionaryVersion</key>
14+
<string>6.0</string>
15+
<key>CFBundleName</key>
16+
<string>Branch</string>
17+
<key>CFBundlePackageType</key>
18+
<string>FMWK</string>
19+
<key>CFBundleShortVersionString</key>
20+
<string>0.33.1</string>
21+
<key>CFBundleSignature</key>
22+
<string>????</string>
23+
<key>CFBundleVersion</key>
24+
<string>0.33.1</string>
25+
<key>LSRequiresIPhoneOS</key>
26+
<true/>
27+
<key>NSHumanReadableCopyright</key>
28+
<string>Copyright © 2017 Branch Metrics. All rights reserved.</string>
29+
</dict>
30+
</plist>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
framework module Branch {
2+
umbrella header "Branch.h"
3+
4+
export *
5+
module * { export * }
6+
7+
link framework "MobileCoreServices"
8+
}

Branch.framework/Versions/A/Branch

31.1 MB
Binary file not shown.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
//
2+
// BNCAvailability.h
3+
// Branch-SDK
4+
//
5+
// Created by Edward on 10/26/16.
6+
// Copyright © 2016 Branch Metrics. All rights reserved.
7+
//
8+
9+
#if __has_feature(modules)
10+
@import Foundation;
11+
#else
12+
#import <Foundation/Foundation.h>
13+
#endif
14+
15+
#if defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED < __IPHONE_10_0
16+
#warning Warning: Compiling with pre-iOS 10 / Xcode 7 support.
17+
18+
typedef NSString * UIActivityType;
19+
typedef NSString * UIApplicationOpenURLOptionsKey;
20+
21+
#endif
22+
23+
#ifndef NS_STRING_ENUM
24+
#define NS_STRING_ENUM
25+
#endif
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
//
2+
// BNCCallbacks.h
3+
// Branch-TestBed
4+
//
5+
// Created by Ahmed Nawar on 6/18/16.
6+
// Copyright © 2016 Branch Metrics. All rights reserved.
7+
//
8+
9+
#if __has_feature(modules)
10+
@import Foundation;
11+
#else
12+
#import <Foundation/Foundation.h>
13+
#endif
14+
15+
@class BranchUniversalObject, BranchLinkProperties;
16+
17+
typedef void (^callbackWithParams) (NSDictionary * _Nullable params, NSError * _Nullable error);
18+
typedef void (^callbackWithUrl) (NSString * _Nullable url, NSError * _Nullable error);
19+
typedef void (^callbackWithStatus) (BOOL changed, NSError * _Nullable error);
20+
typedef void (^callbackWithList) (NSArray * _Nullable list, NSError * _Nullable error);
21+
typedef void (^callbackWithUrlAndSpotlightIdentifier) (NSString * _Nullable url, NSString * _Nullable spotlightIdentifier, NSError * _Nullable error);
22+
typedef void (^callbackWithBranchUniversalObject) (BranchUniversalObject * _Nullable universalObject, BranchLinkProperties * _Nullable linkProperties, NSError * _Nullable error);

0 commit comments

Comments
 (0)