Skip to content

Commit

Permalink
Merge pull request #742 from BranchMetrics/Release-5.6.0
Browse files Browse the repository at this point in the history
Release 5.6.0
  • Loading branch information
gdeluna-branch authored Oct 1, 2022
2 parents 0061d7c + 600f47e commit 81c93ec
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
2022-09-30 Version 5.6.0
- Update Android SDK to 5.2.4
- Update iOS SDK to 1.43.2
- Fix BranchUniversalObject showShareSheet return type definition (thanks romanlitvin)
- Change customData type definition to String String dictionary (thanks vincent-paing!)
- Fixed clearPartnerParameters call (thanks danilobuerger!)
- Add callback to setIdentity in new function `setIdentityAsync`

2022-07-20 Version 5.5.0
- Branch QR code creation support added.
```js
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@ def safeExtGet(prop, fallback) {
dependencies {
implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0'
implementation 'com.facebook.react:react-native:+' // From node_modules
api 'io.branch.sdk.android:library:5.2.0'
api 'io.branch.sdk.android:library:5.2.4'
}
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ public void setIdentity(String identity) {
@ReactMethod
public void setIdentityAsync(String identity, Promise promise) {
Branch branch = Branch.getInstance();
branch.setIdentity(identity, new BranchReferralInitListener() {
branch.setIdentity(identity, new Branch.BranchReferralInitListener() {
@Override
public void onInitFinished(JSONObject referringParams, BranchError error) {
if (error != null) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-branch",
"version": "5.5.0",
"version": "5.6.0",
"description": "Branch Metrics React Native SDK",
"main": "src/index.js",
"types": "src/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion react-native-branch.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Pod::Spec.new do |s|
s.source_files = [ "ios/*.h", "ios/*.m"]
s.compiler_flags = %[-DRNBRANCH_VERSION=@\\"#{s.version}\\"]
s.header_dir = 'RNBranch' # also sets generated module name
s.dependency 'Branch', '1.43.1'
s.dependency 'Branch', '1.43.2'
s.dependency 'React-Core' # to ensure the correct build order

# Swift/Objective-C compatibility
Expand Down

0 comments on commit 81c93ec

Please sign in to comment.