getDebugInfo
Overview
Used for obtaining debug information (the same that would be presented in dialog after shaking the device if debug screen is enabled).
Syntax
getDebugInfo(callback)
CALLBACK(REQUIRED)
Callback<String> Used to provide the function call result to JavaScript.
Parameters:
String - String with debug information
Examples
AATKitCordova.getDebugInfo((debugInfo) => {
console.log("debugInfo " + debugInfo);
});
Last updated