Skip to content

Commit c8ef210

Browse files
committed
Fix bridging header paths for CocoaPods compatibility
Remove Public/ and Private/ path prefixes from import statements in Branch-Bridging-Header.h. CocoaPods flattens all headers into a single directory, so relative paths don't work in the built framework.
1 parent 725271c commit c8ef210

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Sources/BranchSDK/Branch-Bridging-Header.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
// Bridging header to expose Objective-C types to Swift within the Branch target
66
//
77

8-
#import "Public/Branch.h"
9-
#import "Public/BNCServerRequest.h"
10-
#import "Public/BNCServerInterface.h"
11-
#import "Public/BNCServerResponse.h"
12-
#import "Public/BNCPreferenceHelper.h"
13-
#import "Public/BranchLogger.h"
14-
#import "Private/NSError+Branch.h"
8+
#import "Branch.h"
9+
#import "BNCServerRequest.h"
10+
#import "BNCServerInterface.h"
11+
#import "BNCServerResponse.h"
12+
#import "BNCPreferenceHelper.h"
13+
#import "BranchLogger.h"
14+
#import "NSError+Branch.h"

0 commit comments

Comments
 (0)