New to Telerik UI for .NET MAUI? Start a free 30-day trial

Apple Privacy Manifest

Apple is introducing a new privacy policy for including privacy manifest files in your apps that target the iOS, iPadOS, tvOS, visionOS, and watchOS platforms on the App Store. For more details on this policy, please review the Privacy Manifest Files in the Apple documentation.

As of May 1, 2024, the Apple privacy policy manifest file must be included in your apps.

What Must Be Included in the PrivacyInfo.xcprivacy File

The PrivacyInfo.xcprivacy file lists:

Add PrivacyInfo.xcprivacy to Your Application

Create a PrivacyInfo.xcprivacy file inside the Platforms/iOS folder.

For reference, you can use the PrivacyInfo.xcprivacy file already added to the Telerik UI for .NET MAUI Controls Samples and Telerik UI for .NET MAUI Crypto Tracker applications:

<?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>NSPrivacyAccessedAPITypes</key>
    <array>
        <dict>
            <key>NSPrivacyAccessedAPIType</key>
            <string>NSPrivacyAccessedAPICategoryFileTimestamp</string>
            <key>NSPrivacyAccessedAPITypeReasons</key>
            <array>
                <string>C617.1</string>
            </array>
        </dict>
        <dict>
            <key>NSPrivacyAccessedAPIType</key>
            <string>NSPrivacyAccessedAPICategorySystemBootTime</string>
            <key>NSPrivacyAccessedAPITypeReasons</key>
            <array>
                <string>35F9.1</string>
            </array>
        </dict>
        <dict>
            <key>NSPrivacyAccessedAPIType</key>
            <string>NSPrivacyAccessedAPICategoryDiskSpace</string>
            <key>NSPrivacyAccessedAPITypeReasons</key>
            <array>
                <string>E174.1</string>
            </array>
        </dict>     
        <dict>
            <key>NSPrivacyAccessedAPIType</key>
            <string>NSPrivacyAccessedAPICategoryUserDefaults</string>
            <key>NSPrivacyAccessedAPITypeReasons</key>
            <array>
                <string>CA92.1</string>
            </array>
        </dict>
    </array>
</dict>
</plist>

See Also

In this article