diff options
author | Hannah Shi <hannahshisfb@gmail.com> | 2024-02-07 10:24:29 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-07 13:24:29 -0500 |
commit | 704de406be1603c34755538664e29c37391b93f6 (patch) | |
tree | 14229bfaca5666db07bc6a5115f04ba2ea5b8957 | |
parent | 8c0b94e793a66495e0b1f34a5eb26bd7dc672db0 (diff) |
Backport Apple Privacy Manifest (#1611)
-rw-r--r-- | PrivacyInfo.xcprivacy | 14 | ||||
-rwxr-xr-x | absl/abseil.podspec.gen.py | 3 |
2 files changed, 17 insertions, 0 deletions
diff --git a/PrivacyInfo.xcprivacy b/PrivacyInfo.xcprivacy new file mode 100644 index 00000000..6af16412 --- /dev/null +++ b/PrivacyInfo.xcprivacy @@ -0,0 +1,14 @@ +<?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>NSPrivacyCollectedDataTypes</key> + <array/> + <key>NSPrivacyTrackingDomains</key> + <array/> + <key>NSPrivacyAccessedAPITypes</key> + <array/> +</dict> +</plist> diff --git a/absl/abseil.podspec.gen.py b/absl/abseil.podspec.gen.py index 63752980..c83edbfe 100755 --- a/absl/abseil.podspec.gen.py +++ b/absl/abseil.podspec.gen.py @@ -30,6 +30,9 @@ Pod::Spec.new do |s| :git => 'https://github.com/abseil/abseil-cpp.git', :tag => '${tag}', } + s.resource_bundles = { + s.module_name => 'PrivacyInfo.xcprivacy', + } s.module_name = 'absl' s.header_mappings_dir = 'absl' s.header_dir = 'absl' |