Wiki

Clone wiki

REACT native plugin / 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

#!javascript

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

Updated