Skip to content

Commit

Permalink
Added Privacy Manifests for iOS
Browse files Browse the repository at this point in the history
Added a Privacy Manifest in preparation for May 1st's deadline for 3rd Party Libraries to include it
  • Loading branch information
martin-headspace committed Apr 4, 2024
1 parent a6352f6 commit 5470a91
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
14 changes: 14 additions & 0 deletions ios/Resources/PrivacyInfo.xcprivacy
Original file line number Diff line number Diff line change
@@ -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>NSPrivacyTrackingDomains</key>
<array/>
<key>NSPrivacyAccessedAPITypes</key>
<array/>
<key>NSPrivacyCollectedDataTypes</key>
<array/>
<key>NSPrivacyTracking</key>
<false/>
</dict>
</plist>
9 changes: 5 additions & 4 deletions ios/device_calendar.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,20 @@
Pod::Spec.new do |s|
s.name = 'device_calendar'
s.version = '0.0.1'
s.summary = 'A new flutter plugin project.'
s.summary = 'Cross Platform plugin to modify calendars'
s.description = <<-DESC
A new flutter plugin project.
A cross platform plugin for modifying calendars on the user's device
DESC
s.homepage = 'http://example.com'
s.homepage = 'https://github.com/builttoroam/device_calendar'
s.license = { :file => '../LICENSE' }
s.author = { 'Your Company' => 'email@example.com' }
s.author = { 'Built to Roam' => 'info@builttoroam.com' }
s.source = { :path => '.' }
s.swift_version = '5.0'
s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h'
s.dependency 'Flutter'

s.ios.deployment_target = '8.0'
s.resource_bundles = {'device_calendar' => ['Resources/PrivacyInfo.xcprivacy']}
end

0 comments on commit 5470a91

Please sign in to comment.