Skip to main content

Protecting User Privacy

To ensure that sensitive information is not reported to WOVN, the WOVN SDK provides two key features designed to safeguard user privacy:

  1. Debug Mode with "Limit Reporting to Only App Operator" (Enabled by default)

    • Enables faster reporting and translation without sending actual end-user data to WOVN.
    • Protects user privacy by restricting data reporting to App Operators only.
  2. Using WOVN Ignore

    • Allows you to specify views that should not be translated.
    • Helps exclude sensitive information from translation, enhancing user privacy.

1. Debug Mode with "Limit Reporting to Only App Operator"

  1. Follow the instructions in the WOVN Debug Mode document to enable Debug Mode.
  2. The "Limit Reporting to Only App Operator" setting is enabled by default. To modify this behavior, please contact WOVN support.

Note:
This method is highly recommended due to its simplicity. It ensures complete user privacy while supporting development and testing activities.

2. Exclude Sensitive Information Using isIgnored: true with Text or RichText

To prevent sensitive information from being translated, add isIgnored: true to a Text or RichText widget. This tells the WOVN SDK to skip translating the specified text.

Text(
'This text will be ignored by WOVN',
style: ignoredTextStyle,
isIgnored: true,
)