Skip to content

Commit

Permalink
Updated privacy manifest file (#44)
Browse files Browse the repository at this point in the history
* Updated privacy manifest file

* Updated README.md
  • Loading branch information
mrajatttt authored Dec 12, 2024
1 parent 150a68f commit 39eb8a5
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 19 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ Then run `pod install` in your project's root directory
3. Unzip the downloaded file, if necessary.
4. Drag and drop the `AmazonConnectChatIOS.xcframework` into your Xcode project.

>⚠️ Important: Please remember to add 'AWSCore' and 'AWSConnectParticipant' from [AWS IOS SDK](https://github.com/aws-amplify/aws-sdk-ios) while using binaries.

#### How to Import the XCFramework

Once you have added the `AmazonConnectChatIOS.xcframework` to your project, you need to import it into your code. Here are the steps:
Expand Down
46 changes: 27 additions & 19 deletions Sources/PrivacyInfo.xcprivacy
Original file line number Diff line number Diff line change
@@ -1,19 +1,27 @@
{
"data": [
{
"type": "attachments",
"purpose": [
"app_functionality"
],
"optional": true,
"linked": false
}
],
"thirdPartyDataSharing": {
"sharedData": [],
"thirdPartyIdentifiers": []
},
"dataDeclarationVersions": {
"version": "1.0"
}
}
<?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>
<dict>
<key>type</key>
<string>attachments</string>
<key>purpose</key>
<array>
<string>app_functionality</string>
</array>
<key>optional</key>
<true/>
<key>linked</key>
<false/>
</dict>
</array>
<key>NSPrivacyAccessedAPITypes</key>
<array/>
</dict>
</plist>

0 comments on commit 39eb8a5

Please sign in to comment.