Skip to content

Commit a569003

Browse files
committed
SDK-620 prep for release. Minor text correction. Update carthage project
1 parent d776d21 commit a569003

File tree

4 files changed

+22
-7
lines changed

4 files changed

+22
-7
lines changed

Branch-SDK/Branch-SDK/Branch.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -626,15 +626,15 @@ typedef NS_ENUM(NSUInteger, BranchCreditHistoryOrder) {
626626
/**
627627
Check for Apple Search Ads before initialization.
628628
629-
This will usually add less than 1 second to first time startup. Up to 3.5 seconds if Apple Search Ads fails to respond.
629+
This will usually add less than 1 second on first time startup. Up to 3.5 seconds if Apple Search Ads fails to respond.
630630
*/
631631
- (void)delayInitToCheckForSearchAds;
632632

633633
/**
634634
Increases the amount of time the SDK waits for Apple Search Ads to respond.
635635
The default wait has a better than 90% success rate, however waiting longer can improve the success rate.
636636
637-
This will increase the usual delay to about 3 seconds to first time startup. Up to about 15 seconds if Apple Search Ads fails to respond.
637+
This will increase the usual delay to about 3 seconds on first time startup. Up to about 15 seconds if Apple Search Ads fails to respond.
638638
*/
639639
- (void)useLongerWaitForAppleSearchAds;
640640

Branch.podspec

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,7 @@ Use the Branch SDK (branch.io) to create and power the links that point back to
2727

2828
s.subspec 'Core' do |core|
2929
core.source_files = source_files
30-
core.frameworks = 'AdSupport', 'MobileCoreServices', 'SafariServices', 'WebKit', 'iAd'
30+
core.frameworks = 'AdSupport', 'MobileCoreServices', 'WebKit', 'iAd'
3131
end
3232

33-
s.subspec 'without-Safari' do |safari|
34-
safari.source_files = source_files
35-
safari.frameworks = 'AdSupport', 'MobileCoreServices', 'WebKit', 'iAd'
36-
end
3733
end

ChangeLog.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
Branch iOS SDK Change Log
22

3+
- v0.30.0
4+
* _*Master Release*_ - Nov 13, 2019
5+
* SDK-513 update Apple Search Ads behavior and API
6+
* SDK-614 last attributed touch API now accepts attribution window
7+
* SDK-605 add blacklist url configuration
8+
* SDK-608 remove deprecated Safari cookie integration
9+
* SDK-598 fix race condition on SDK init
10+
* SDK-603 fix Carthage build from source
11+
* SDK-554 fix Swift getInstance nullability
12+
* SDK-450 fix object serialization error
13+
314
- v0.29.3
415
* _*Master Release*_ - Oct 16, 2019
516
* SDK-594 fix Tune data check

carthage-files/BranchSDK.xcodeproj/project.pbxproj

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@
8080
4DB5673A1E79FDAF00A8A324 /* BranchShareLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DB567381E79FDAF00A8A324 /* BranchShareLink.h */; platformFilter = ios; settings = {ATTRIBUTES = (Public, ); }; };
8181
4DB5673B1E79FDAF00A8A324 /* BranchShareLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DB567391E79FDAF00A8A324 /* BranchShareLink.m */; platformFilter = ios; };
8282
4DCF4B011F438A2B00AF9AAB /* BNCLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BD7C3D91F27CEDB003696AF /* BNCLog.h */; platformFilter = ios; settings = {ATTRIBUTES = (Public, ); }; };
83+
5F7DB5FB237C95C30077A95F /* BNCAppleAdClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F7DB5F9237C95C30077A95F /* BNCAppleAdClient.h */; platformFilter = ios; };
84+
5F7DB5FC237C95C30077A95F /* BNCAppleAdClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F7DB5FA237C95C30077A95F /* BNCAppleAdClient.m */; };
8385
5F8FC239236BB18A00B8474A /* BNCFacebookAppLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F8FC235236BB18900B8474A /* BNCFacebookAppLinks.m */; };
8486
5F8FC23A236BB18A00B8474A /* BNCAppleSearchAds.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F8FC236236BB18900B8474A /* BNCAppleSearchAds.h */; platformFilter = ios; };
8587
5F8FC23B236BB18A00B8474A /* BNCAppleSearchAds.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F8FC237236BB18A00B8474A /* BNCAppleSearchAds.m */; };
@@ -216,6 +218,8 @@
216218
4DB328041FA10C6300ACF9B0 /* BranchEvent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BranchEvent.m; sourceTree = "<group>"; };
217219
4DB567381E79FDAF00A8A324 /* BranchShareLink.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BranchShareLink.h; sourceTree = "<group>"; };
218220
4DB567391E79FDAF00A8A324 /* BranchShareLink.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BranchShareLink.m; sourceTree = "<group>"; };
221+
5F7DB5F9237C95C30077A95F /* BNCAppleAdClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BNCAppleAdClient.h; sourceTree = "<group>"; };
222+
5F7DB5FA237C95C30077A95F /* BNCAppleAdClient.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BNCAppleAdClient.m; sourceTree = "<group>"; };
219223
5F8FC235236BB18900B8474A /* BNCFacebookAppLinks.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BNCFacebookAppLinks.m; sourceTree = "<group>"; };
220224
5F8FC236236BB18900B8474A /* BNCAppleSearchAds.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BNCAppleSearchAds.h; sourceTree = "<group>"; };
221225
5F8FC237236BB18A00B8474A /* BNCAppleSearchAds.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BNCAppleSearchAds.m; sourceTree = "<group>"; };
@@ -351,6 +355,8 @@
351355
E230A1141D03DB9E006181D8 /* Branch-SDK */ = {
352356
isa = PBXGroup;
353357
children = (
358+
5F7DB5F9237C95C30077A95F /* BNCAppleAdClient.h */,
359+
5F7DB5FA237C95C30077A95F /* BNCAppleAdClient.m */,
354360
5F8FC236236BB18900B8474A /* BNCAppleSearchAds.h */,
355361
5F8FC237236BB18A00B8474A /* BNCAppleSearchAds.m */,
356362
5F8FC238236BB18A00B8474A /* BNCFacebookAppLinks.h */,
@@ -478,6 +484,7 @@
478484
4D1ED27E1FB3A43A007390A8 /* BNCAvailability.h in Headers */,
479485
E2B9477B1D15E31700F2270D /* BNCCallbacks.h in Headers */,
480486
4D3922BD1E1F0C85004FB7C8 /* BNCCommerceEvent.h in Headers */,
487+
5F7DB5FB237C95C30077A95F /* BNCAppleAdClient.h in Headers */,
481488
E230A16C1D03DB9E006181D8 /* BNCConfig.h in Headers */,
482489
5F9071CC233D5FE4003AACAD /* BranchLATDRequest.h in Headers */,
483490
5F9071CE233D5FE4003AACAD /* BranchCPIDRequest.h in Headers */,
@@ -634,6 +641,7 @@
634641
5F8FC23B236BB18A00B8474A /* BNCAppleSearchAds.m in Sources */,
635642
4D1851CA2019127700E48994 /* BNCKeyChain.m in Sources */,
636643
4DAB17A51EE8A31B0079EEB4 /* BNCServerRequestQueue.m in Sources */,
644+
5F7DB5FC237C95C30077A95F /* BNCAppleAdClient.m in Sources */,
637645
E230A1901D03DB9E006181D8 /* BranchLinkProperties.m in Sources */,
638646
4DAB17A91EE8A31B0079EEB4 /* BranchCloseRequest.m in Sources */,
639647
4DAB17B71EE8A31B0079EEB4 /* BranchRegisterViewRequest.m in Sources */,

0 commit comments

Comments
 (0)