Skip to content

Commit faada7b

Browse files
committed
Release 0.26.0.
1 parent 5885867 commit faada7b

File tree

6 files changed

+31
-5
lines changed

6 files changed

+31
-5
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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>BuildSystemType</key>
6+
<string>Original</string>
7+
</dict>
8+
</plist>

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.25.11</string>
20+
<string>0.26.0</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>0.25.11</string>
24+
<string>0.26.0</string>
2525
<key>LSRequiresIPhoneOS</key>
2626
<true/>
2727
<key>NSHumanReadableCopyright</key>

Branch.framework/Versions/A/Branch

5.34 MB
Binary file not shown.

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

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ FOUNDATION_EXPORT BranchStandardEvent _Nonnull BranchStandardEventInitiatePurcha
2323
FOUNDATION_EXPORT BranchStandardEvent _Nonnull BranchStandardEventAddPaymentInfo;
2424
FOUNDATION_EXPORT BranchStandardEvent _Nonnull BranchStandardEventPurchase;
2525
FOUNDATION_EXPORT BranchStandardEvent _Nonnull BranchStandardEventSpendCredits;
26+
FOUNDATION_EXPORT BranchStandardEvent _Nonnull BranchStandardEventSubscribe;
27+
FOUNDATION_EXPORT BranchStandardEvent _Nonnull BranchStandardEventStartTrial;
28+
FOUNDATION_EXPORT BranchStandardEvent _Nonnull BranchStandardEventClickAd;
29+
FOUNDATION_EXPORT BranchStandardEvent _Nonnull BranchStandardEventViewAd;
2630

2731
///@name Content Events
2832

@@ -38,6 +42,17 @@ FOUNDATION_EXPORT BranchStandardEvent _Nonnull BranchStandardEventCompleteRegist
3842
FOUNDATION_EXPORT BranchStandardEvent _Nonnull BranchStandardEventCompleteTutorial;
3943
FOUNDATION_EXPORT BranchStandardEvent _Nonnull BranchStandardEventAchieveLevel;
4044
FOUNDATION_EXPORT BranchStandardEvent _Nonnull BranchStandardEventUnlockAchievement;
45+
FOUNDATION_EXPORT BranchStandardEvent _Nonnull BranchStandardEventInvite;
46+
FOUNDATION_EXPORT BranchStandardEvent _Nonnull BranchStandardEventLogin;
47+
FOUNDATION_EXPORT BranchStandardEvent _Nonnull BranchStandardEventReserve;
48+
49+
typedef NS_ENUM(NSInteger, BranchEventAdType) {
50+
BranchEventAdTypeNone,
51+
BranchEventAdTypeBanner,
52+
BranchEventAdTypeInterstitial,
53+
BranchEventAdTypeRewardedVideo,
54+
BranchEventAdTypeNative
55+
};
4156

4257
#pragma mark - BranchEvent
4358

@@ -65,6 +80,10 @@ FOUNDATION_EXPORT BranchStandardEvent _Nonnull BranchStandardEventUnlockAchievem
6580
@property (nonatomic, strong) NSString*_Nullable affiliation;
6681
@property (nonatomic, strong) NSString*_Nullable eventDescription;
6782
@property (nonatomic, strong) NSString*_Nullable searchQuery;
83+
84+
@property (nonatomic, assign) BranchEventAdType adType;
85+
86+
6887
@property (nonatomic, copy) NSMutableArray<BranchUniversalObject*>*_Nonnull contentItems;
6988
@property (nonatomic, copy) NSMutableDictionary<NSString*, NSString*> *_Nonnull customData;
7089

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-
95f37584970761c86ca5ee062147d2383a926708 Branch-iOS-SDK.zip
2+
9ddb700180c7a4c2f4dbd6f2ad9a013995a3e75b 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-
2b68b4eab124a7d30e37d676fe490929068b5f3d Branch-iOS-TestBed.zip
4+
0c2461a9204250ae8a3fe24eb532cb6343f8b446 Branch-iOS-TestBed.zip

scripts/deploy-build-framework

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ function xcodeBuildTarget() {
1919
-sdk $platform \
2020
-configuration Release \
2121
-quiet \
22-
clean build \
2322
OTHER_CFLAGS="-fembed-bitcode"
2423
}
2524

0 commit comments

Comments
 (0)