Skip to content

Commit 2bbcf46

Browse files
chore(version bump): Updated native SDKs
1 parent befa364 commit 2bbcf46

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

plugin.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ SOFTWARE.
6363
<!-- Manifest configuration is done via a js script. We should move it to this config in the future. -->
6464

6565
<source-file src="src/android/io/branch/BranchSDK.java" target-dir="src/io/branch" />
66-
<framework src="io.branch.sdk.android:library:5.2.7"/>
66+
<framework src="io.branch.sdk.android:library:5.7.0"/>
6767
</platform>
6868

6969
<!-- iOS -->
@@ -87,7 +87,7 @@ SOFTWARE.
8787
<source url="https://cdn.cocoapods.org/"/>
8888
</config>
8989
<pods>
90-
<pod name="Branch" spec="~> 1.45.2" />
90+
<pod name="BranchSDK" spec="~> 2.2.0" />
9191
</pods>
9292
</podspec>
9393
</platform>

src/ios/AppDelegate+BranchSdk.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#ifdef BRANCH_NPM
66
#import "Branch.h"
77
#else
8-
#import <Branch/Branch.h>
8+
#import <BranchSDK/Branch.h>
99
#endif
1010

1111
// Provides Ionic Capacitor compatibility

src/ios/BranchSDK.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
#import "BranchLinkProperties.h"
66
#import "BranchUniversalObject.h"
77
#else
8-
#import <Branch/Branch.h>
9-
#import <Branch/BranchLinkProperties.h>
10-
#import <Branch/BranchUniversalObject.h>
8+
#import <BranchSDK/Branch.h>
9+
#import <BranchSDK/BranchLinkProperties.h>
10+
#import <BranchSDK/BranchUniversalObject.h>
1111
#endif
1212

1313
#import <Cordova/CDV.h>

src/scripts/ios/updateHeaderPaths.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
config = config.split("\n")
2525
.map(function (line) {
2626
if (line.indexOf("HEADER_SEARCH_PATHS") > -1 && line.indexOf("Branch-SDK") === -1) {
27-
line += ' "${PODS_ROOT}/Branch/Branch-SDK"';
27+
line += ' "${PODS_ROOT}/BranchSDK/Branch-SDK"';
2828
}
2929
return line;
3030
});

0 commit comments

Comments
 (0)