Skip to content

Commit c84dcb1

Browse files
author
Adrian Marquez
committed
SDK-557: Reenable cpid/latd android functions
1 parent 888fafe commit c84dcb1

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

src/android/io/branch/BranchSDK.java

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -263,15 +263,11 @@ public boolean execute(String action, JSONArray args, CallbackContext callbackCo
263263
}
264264

265265
public void crossPlatformIds(CallbackContext callbackContext) {
266-
// stub call from known issue with caching
267-
// this.instance.getCrossPlatformIds(new BranchCPIDListener(callbackContext));
268-
callbackContext.sendPluginResult(new PluginResult(PluginResult.Status.OK, false));
266+
this.instance.getCrossPlatformIds(new BranchCPIDListener(callbackContext));
269267
}
270268

271269
public void lastAttributedTouchData(CallbackContext callbackContext) {
272-
// stub call from known issue with caching
273-
// this.instance.getLastAttributedTouchData(new BranchLATDListener(callbackContext), 30);
274-
callbackContext.sendPluginResult(new PluginResult(PluginResult.Status.OK, false));
270+
this.instance.getLastAttributedTouchData(new BranchLATDListener(callbackContext), 30);
275271
}
276272

277273
//////////////////////////////////////////////////

0 commit comments

Comments
 (0)