We’re GDPR compliant. However, if you collect any PII data in your app such as email address, phone, or credit card number you should use our API to hide it.
Sensitive information will be hidden under red boxes on the device before rendering the video and therefore never sent to UXCam. Ensure that all this info is hidden before releasing your app to production to ensure your users’ PII is never recorded.
Note: if you use Flutter you can only hide the entire Screen, not views or text fields.
Hide Sensitive Screen
Use it to hide the whole application screen. It is useful when you don’t want to capture the whole view, e.g., the payment screen. Call once with 'true' to start hiding the screen and later with 'false' to record normal contents again (when the sensitive view is no longer active).
void occludeSensitiveScreen(bool occlude)
The API parameters are:
occlude: Set TRUE to hide the screen from the recording, FALSE to start recording the screen contents again.
hideGesture: Optional. Hides gestures as well.