Rendering

SDK can use different methods of capturing screen image data. These are called rendering modes.

Set rendering mode

A rendering mode can be set on SDK setup, e.g.:

Smartlook.setupAndStartRecording({
  smartlookAPIKey: string,
  renderingMode: Smartlook.RenderingMode
});

Or at anytime during an application run by using thew following:

Smartlook.setRenderingMode({renderingMode: Smartlook.RenderingMode});

Rendering modes available are following:

  • Smartlook.RenderingMode.NATIVE
  • Smartlook.RenderingMode.NO_RENDERING

📘

NO_RENDERING mode does not record any screen data, this is beneficial on screens that include sensitive data, read more.