Skip to content

Commit

Permalink
Release 0.34.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
echo-branch committed Jun 2, 2020
1 parent b567319 commit 0d97d48
Show file tree
Hide file tree
Showing 41 changed files with 3,972 additions and 43 deletions.
35 changes: 0 additions & 35 deletions .circleci/config.yml

This file was deleted.

2 changes: 1 addition & 1 deletion Branch-SDK/BNCConfig.m
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
NSString * const BNC_API_BASE_URL = @"https://api2.branch.io";
NSString * const BNC_API_VERSION = @"v1";
NSString * const BNC_LINK_URL = @"https://bnc.lt";
NSString * const BNC_SDK_VERSION = @"0.33.1";
NSString * const BNC_SDK_VERSION = @"0.34.0";
1 change: 1 addition & 0 deletions Branch.framework/Branch
1 change: 1 addition & 0 deletions Branch.framework/Headers
30 changes: 30 additions & 0 deletions Branch.framework/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDisplayName</key>
<string>Branch</string>
<key>CFBundleExecutable</key>
<string>Branch</string>
<key>CFBundleGetInfoString</key>
<string>The Branch iOS SDK Framework</string>
<key>CFBundleIdentifier</key>
<string>io.branch.sdk.ios</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>Branch</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.33.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>0.33.1</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2017 Branch Metrics. All rights reserved.</string>
</dict>
</plist>
8 changes: 8 additions & 0 deletions Branch.framework/Modules/module.modulemap
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
framework module Branch {
umbrella header "Branch.h"

export *
module * { export * }

link framework "MobileCoreServices"
}
Binary file added Branch.framework/Versions/A/Branch
Binary file not shown.
25 changes: 25 additions & 0 deletions Branch.framework/Versions/A/Headers/BNCAvailability.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
//
// BNCAvailability.h
// Branch-SDK
//
// Created by Edward on 10/26/16.
// Copyright © 2016 Branch Metrics. All rights reserved.
//

#if __has_feature(modules)
@import Foundation;
#else
#import <Foundation/Foundation.h>
#endif

#if defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED < __IPHONE_10_0
#warning Warning: Compiling with pre-iOS 10 / Xcode 7 support.

typedef NSString * UIActivityType;
typedef NSString * UIApplicationOpenURLOptionsKey;

#endif

#ifndef NS_STRING_ENUM
#define NS_STRING_ENUM
#endif
22 changes: 22 additions & 0 deletions Branch.framework/Versions/A/Headers/BNCCallbacks.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
//
// BNCCallbacks.h
// Branch-TestBed
//
// Created by Ahmed Nawar on 6/18/16.
// Copyright © 2016 Branch Metrics. All rights reserved.
//

#if __has_feature(modules)
@import Foundation;
#else
#import <Foundation/Foundation.h>
#endif

@class BranchUniversalObject, BranchLinkProperties;

typedef void (^callbackWithParams) (NSDictionary * _Nullable params, NSError * _Nullable error);
typedef void (^callbackWithUrl) (NSString * _Nullable url, NSError * _Nullable error);
typedef void (^callbackWithStatus) (BOOL changed, NSError * _Nullable error);
typedef void (^callbackWithList) (NSArray * _Nullable list, NSError * _Nullable error);
typedef void (^callbackWithUrlAndSpotlightIdentifier) (NSString * _Nullable url, NSString * _Nullable spotlightIdentifier, NSError * _Nullable error);
typedef void (^callbackWithBranchUniversalObject) (BranchUniversalObject * _Nullable universalObject, BranchLinkProperties * _Nullable linkProperties, NSError * _Nullable error);
Loading

0 comments on commit 0d97d48

Please sign in to comment.