File tree Expand file tree Collapse file tree 10 files changed +52
-9
lines changed
Expand file tree Collapse file tree 10 files changed +52
-9
lines changed Original file line number Diff line number Diff line change 1717 <key >CFBundlePackageType </key >
1818 <string >FMWK </string >
1919 <key >CFBundleShortVersionString </key >
20- <string >0.25.6 </string >
20+ <string >0.25.7 </string >
2121 <key >CFBundleSignature </key >
2222 <string >???? </string >
2323 <key >CFBundleVersion </key >
24- <string >0.25.6 </string >
24+ <string >0.25.7 </string >
2525 <key >LSRequiresIPhoneOS </key >
2626 <true />
2727 <key >NSHumanReadableCopyright </key >
Original file line number Diff line number Diff line change @@ -263,7 +263,7 @@ NSArray<BNCCurrency>*_Nonnull BNCCurrencyAllCurrencies(void);
263263@end
264264
265265
266- @interface BranchCommerceEventRequest : BNCServerRequest <NSCoding >
266+ @interface BranchCommerceEventRequest : BNCServerRequest <NSSecureCoding >
267267
268268- (instancetype _Nonnull) initWithCommerceEvent : (BNCCommerceEvent*_Nonnull)commerceEvent
269269 metadata : (NSDictionary *_Nullable)dictionary
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ typedef NS_ENUM(NSUInteger, BranchLinkType) {
1717 BranchLinkTypeOneTimeUse = 1
1818};
1919
20- @interface BNCLinkData : NSObject
20+ @interface BNCLinkData : NSObject < NSSecureCoding >
2121
2222@property (strong , nonatomic ) NSMutableDictionary *data;
2323
Original file line number Diff line number Diff line change 88
99#import " BNCServerInterface.h"
1010
11- @interface BNCServerRequest : NSObject <NSCoding >
11+ @interface BNCServerRequest : NSObject <NSSecureCoding >
1212
1313- (void )makeRequest : (BNCServerInterface *)serverInterface key : (NSString *)key callback : (BNCServerCallback)callback ;
1414- (void )processResponse : (BNCServerResponse *)response error : (NSError *)error ;
Original file line number Diff line number Diff line change 2727#import " BNCAvailability.h"
2828#import " BranchActivityItemProvider.h"
2929#import " BranchConstants.h"
30+ #import " BranchCSSearchableItemAttributeSet.h"
3031#import " BranchDeepLinkingController.h"
3132#import " BranchEvent.h"
3233#import " BranchLinkProperties.h"
Original file line number Diff line number Diff line change 1+ //
2+ // BranchCSSearchableItemAttributeSet.h
3+ // Branch-TestBed
4+ //
5+ // Created by Derrick Staten on 9/8/15.
6+ // Copyright © 2015 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 >= 90000
16+ #pragma clang diagnostic push
17+ #pragma clang diagnostic ignored "-Wpartial-availability"
18+
19+ #if __has_feature(modules)
20+ @import CoreSpotlight;
21+ @import MobileCoreServices;
22+ #else
23+ #import < CoreSpotlight/CoreSpotlight.h>
24+ #import < MobileCoreServices/MobileCoreServices.h>
25+ #endif
26+
27+ @interface BranchCSSearchableItemAttributeSet : CSSearchableItemAttributeSet
28+
29+ - (id )init ;
30+ - (id )initWithContentType : (NSString *)type ;
31+ - (void )indexWithCallback : (void (^) (NSString * url,
32+ NSString * spotlightIdentifier,
33+ NSError * error))callback ;
34+
35+ @property (nonatomic , strong ) NSDictionary *params;
36+ @property (nonatomic , strong ) NSSet *keywords;
37+ @property (nonatomic ) BOOL publiclyIndexable; // !< Defaults to YES
38+
39+ @end
40+
41+ #pragma clang diagnostic pop
42+ #endif
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ FOUNDATION_EXPORT BranchStandardEvent _Nonnull BranchStandardEventUnlockAchievem
7575
7676#pragma mark - BranchEventRequest
7777
78- @interface BranchEventRequest : BNCServerRequest <NSCoding >
78+ @interface BranchEventRequest : BNCServerRequest <NSSecureCoding >
7979
8080- (instancetype _Nonnull) initWithServerURL : (NSURL *_Nonnull)serverURL
8181 eventDictionary : (NSDictionary *_Nullable)eventDictionary
Original file line number Diff line number Diff line change 11Branch iOS SDK Change Log
22
33- v0.25.7
4- * _ * Master Release* _ - October 18 , 2018
4+ * _ * Master Release* _ - October 22 , 2018
55 * DEVEX-861 Fix inconsistent unit tests. (#882 )
66 - Fixed tests that were intermittently failing due to presumed app state.
77 * DEVEX-850 iOS 12 Background Networking Change (#881 )
Original file line number Diff line number Diff line change 11#checksum for Branch-iOS-SDK found at https://s3-us-west-1.amazonaws.com/branchhost/Branch-iOS-SDK.zip
2- 7144dc9696b450f1f0c2f2bb64a7ebcda2ac1564 Branch-iOS-SDK.zip
2+ fbec17d1c251418aece5bc852ca89e4e70f22269 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- 5855484d427771da692a941ee72495e1c3a4b7df Branch-iOS-TestBed.zip
4+ bdd7a70c2eaa3233a7a84db8d815b37694d11b09 Branch-iOS-TestBed.zip
You can’t perform that action at this time.
0 commit comments