> For the complete documentation index, see [llms.txt](https://docs.electricbolt.co.nz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.electricbolt.co.nz/additional-reading/security/privacyinfo.xcprivacy.md).

# PrivacyInfo.xcprivacy

The iOS and watchOS AppfigurateLibrary.xcframework includes an embedded `PrivacyInfo.xcprivacy` file. The file is effectively empty as Appfigurate Library does not have any Tracking component or use any APIs as per the Apple <https://developer.apple.com/documentation/bundleresources/privacy_manifest_files> documentation.

> Current `PrivacyInfo.xcprivacy` file contents

```xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>NSPrivacyTracking</key>
    <false/>
    <key>NSPrivacyTrackingDomains</key>
    <array/>
    <key>NSPrivacyCollectedDataTypes</key>
    <array/>
    <key>NSPrivacyAccessedAPITypes</key>
    <array/>
</dict>
</plist>

```
