Skip to content

Commit 707df46

Browse files
committed
Merge pull request #56 from BranchMetrics/fix/issue-50-no-resource-identifier-found-for-attribute-autoverify
Fix/issue 50 no resource identifier found for attribute autoverify
2 parents e5d7036 + 09b1f2d commit 707df46

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-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: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
import org.apache.cordova.CallbackContext;
88
import org.apache.cordova.CordovaPlugin;
9+
import org.apache.cordova.PluginResult;
910

1011
import org.json.JSONArray;
1112
import org.json.JSONException;
@@ -373,9 +374,9 @@ private void createBranchUniversalObject(JSONObject options) throws JSONExceptio
373374
Iterator<?> keys = contentMetaData.keys();
374375

375376
while (keys.hasNext()) {
376-
Log.d(LCAT, contentMetaData.getString(key));
377377
String key = (String) keys.next();
378378
String value = contentMetaData.optString(key);
379+
Log.d(LCAT, contentMetaData.getString(key));
379380
this.branchObj.addContentMetadata(key, value);
380381
}
381382
}

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)