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<Boolean>. Used to provide the function call result to JavaScript.

Parameters:

  • String - String with debug information

Examples

RNAatkit.getDebugInfo((debugInfo) => {
                console.log("debugInfo " + debugInfo);
            });

Last updated