Navaron Bracke

add iOS Privacy Manifest

@@ -4,6 +4,7 @@ @@ -4,6 +4,7 @@
4 4
5 * Flutter 3.19.0 is now required. 5 * Flutter 3.19.0 is now required.
6 * [iOS] iOS 12.0 is now the minimum supported iOS version. 6 * [iOS] iOS 12.0 is now the minimum supported iOS version.
  7 +* [iOS] Adds a Privacy Manifest.
7 8
8 Bugs fixed: 9 Bugs fixed:
9 * Fixed an issue where the camera preview and barcode scanner did not work the second time on web. 10 * Fixed an issue where the camera preview and barcode scanner did not work the second time on web.
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3 +<plist version="1.0">
  4 +<dict>
  5 + <key>NSPrivacyAccessedAPITypes</key>
  6 + <array/>
  7 + <key>NSPrivacyCollectedDataTypes</key>
  8 + <array/>
  9 + <key>NSPrivacyTrackingDomains</key>
  10 + <array/>
  11 + <key>NSPrivacyTracking</key>
  12 + <false/>
  13 +</dict>
  14 +</plist>
@@ -21,4 +21,5 @@ An universal scanner for Flutter based on MLKit. @@ -21,4 +21,5 @@ An universal scanner for Flutter based on MLKit.
21 # Flutter.framework does not contain a i386 slice. 21 # Flutter.framework does not contain a i386 slice.
22 s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' } 22 s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
23 s.swift_version = '5.0' 23 s.swift_version = '5.0'
  24 + s.resource_bundles = { 'mobile_scanner_privacy' => ['Resources/PrivacyInfo.xcprivacy'] }
24 end 25 end