Skip to content

Commit bc86b96

Browse files
Merge pull request #619 from BranchMetrics/staging
Release 4.1.1
2 parents c568eaa + 9b59503 commit bc86b96

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "branch-cordova-sdk",
33
"description": "Branch Metrics Cordova SDK",
44
"main": "src/index.js",
5-
"version": "4.1.0",
5+
"version": "4.1.1",
66
"homepage": "https://github.com/BranchMetrics/cordova-ionic-phonegap-branch-deep-linking",
77
"repository": {
88
"type": "git",

plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ SOFTWARE.
2424
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
2525
xmlns:android="http://schemas.android.com/apk/res/android"
2626
id="branch-cordova-sdk"
27-
version="4.1.0">
27+
version="4.1.1">
2828

2929
<!-- Description -->
3030
<name>branch-cordova-sdk</name>

src/android/io/branch/BranchSDK.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ static class BranchLinkProperties extends io.branch.referral.util.LinkProperties
4545
// Standard Debugging Variables
4646
private static final String LCAT = "CordovaBranchSDK";
4747
// todo pick up plugin version dynamically
48-
private static final String BRANCH_PLUGIN_VERSION = "4.1.0";
48+
private static final String BRANCH_PLUGIN_VERSION = "4.1.1";
4949

5050
// Private Method Properties
5151
private ArrayList<BranchUniversalObjectWrapper> branchObjectWrappers;

src/ios/BranchSDK.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#import "BranchSDK.h"
22

3-
NSString * const pluginVersion = @"4.1.0";
3+
NSString * const pluginVersion = @"4.1.1";
44

55
@interface BranchSDK()
66

@@ -79,7 +79,7 @@ - (void)continueUserActivity:(CDVInvokedUrlCommand*)command
7979

8080
- (void)initSession:(CDVInvokedUrlCommand*)command
8181
{
82-
[[Branch getInstance] registerPluginName:"CordovaIonic" versio:pluginVersion];
82+
[[Branch getInstance] registerPluginName:@"CordovaIonic" version:pluginVersion];
8383
[[Branch getInstance] initSessionWithLaunchOptions:nil andRegisterDeepLinkHandler:^(NSDictionary *params, NSError *error) {
8484

8585
NSString *resultString = nil;

0 commit comments

Comments
 (0)