> For the complete documentation index, see [llms.txt](https://docs.verygoodsecurity.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.verygoodsecurity.com/vault/developer-tools/vgs-show/react-native-sdk/privacy-details.md).

# Privacy Details

## Privacy Details

### Data handling model

The VGS Show React Native SDK is designed so that revealed content stays inside SDK-managed components:

* `VGSShow.request()` returns only an HTTP status code.
* `VGSShowLabel` callbacks do not receive revealed text.
* `VGSShowImage` callbacks and refs do not expose image base64 or bytes.
* `VGSShowPdf` callbacks and refs do not expose PDF base64 or bytes.

Applications are responsible for keeping raw revealed values out of app state, logs, analytics, crash reports, screenshots, persistent storage, and custom callbacks.

### Analytics

SDK analytics are field-level. The allowed metadata is limited to operational events such as initialization, submit status, field category, `contentPath`, copy format, and rendering status. Analytics must not include revealed values, request payload bodies, response bodies, headers, tokens, media bytes, base64, hashes, lengths, or customer identifiers.

The current public package-root API does not expose application-level analytics configuration. Treat analytics metadata as SDK-managed field-level diagnostics.

### Logging

Logging is disabled by default.

```ts
import { VGSLogger } from "@vgs/show-react-native";

VGSLogger.shared.configuration = {
  level: "none",
  isNetworkDebugEnabled: false,
  isExtensiveDebugEnabled: false
};
```

Keep production logging disabled unless an approved diagnostic process requires warnings. Network debug logging can include response bodies and must remain disabled in production.

### Clipboard

`VGSShowLabelRef.copyToClipboard({ format: "raw" })` intentionally copies the raw revealed text to the system clipboard. Prefer `"transformed"` and enable raw copy only when your product and compliance requirements allow it.

### Platform privacy manifests

React Native apps are responsible for their own platform privacy declarations. Review your iOS privacy manifest and Android privacy disclosures for your app's full behavior, including how you use VGS Show, clipboard actions, analytics, logging, crash reporting, screenshots, and any app-specific storage.

The SDK itself should be documented in your app as a display component for revealed vault data. Your app privacy details may need additional entries based on surrounding product behavior and third-party SDKs.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.verygoodsecurity.com/vault/developer-tools/vgs-show/react-native-sdk/privacy-details.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
