Skip to content

Commit 09b1f2d

Browse files
committed
updated init.sh; small fix for contentMetadata
1 parent 2faabbb commit 09b1f2d

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"mkpath": "^1.0.0",
3333
"node-version-compare": "^1.0.1",
3434
"plist": "^1.2.0",
35-
"rimraf": "^2.5.1",
35+
"rimraf": "^2.5.2",
3636
"xml2js": "^0.4.16"
3737
}
3838
}

src/android/io/branch/BranchSDK.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,8 +375,8 @@ private void createBranchUniversalObject(JSONObject options) throws JSONExceptio
375375

376376
while (keys.hasNext()) {
377377
String key = (String) keys.next();
378-
Log.d(LCAT, contentMetaData.getString(key));
379378
String value = contentMetaData.optString(key);
379+
Log.d(LCAT, contentMetaData.getString(key));
380380
this.branchObj.addContentMetadata(key, value);
381381
}
382382
}

testbed/init.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
#!/bin/bash
22
cordova platform add ios android
3-
cordova plugin add ../ --link --variable BRANCH_LIVE_KEY=key_live_fnmRM1FXtu11t6e4LU8WsldpvDcA0bzv --variable URI_SCHEME=testbed --variable ENCODED_ID=X9Ug
3+
cordova plugin add ../ --link --variable BRANCH_LIVE_KEY=key_live_fnmRM1FXtu11t6e4LU8WsldpvDcA0bzv --variable URI_SCHEME=testbed --variable ENCODED_ID=X9Ug
4+
cordova plugin add https://github.com/nordnet/cordova-universal-links-plugin.git

0 commit comments

Comments
 (0)