This repository was archived by the owner on Feb 25, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +43
-0
lines changed
shell/platform/darwin/ios Expand file tree Collapse file tree 3 files changed +43
-0
lines changed Original file line number Diff line number Diff line change @@ -9330,6 +9330,7 @@ FILE: ../../../flutter/shell/platform/darwin/ios/framework/Headers/FlutterPlugin
9330
9330
FILE: ../../../flutter/shell/platform/darwin/ios/framework/Headers/FlutterPluginAppLifeCycleDelegate.h
9331
9331
FILE: ../../../flutter/shell/platform/darwin/ios/framework/Headers/FlutterViewController.h
9332
9332
FILE: ../../../flutter/shell/platform/darwin/ios/framework/Info.plist
9333
+ FILE: ../../../flutter/shell/platform/darwin/ios/framework/PrivacyInfo.xcprivacy
9333
9334
FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterAppDelegate.mm
9334
9335
FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterAppDelegateTest.mm
9335
9336
FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterAppDelegate_Test.h
Original file line number Diff line number Diff line change @@ -373,6 +373,12 @@ copy("copy_framework_module_map") {
373
373
outputs = [ " $_flutter_framework_dir /Modules/module.modulemap" ]
374
374
}
375
375
376
+ copy (" copy_framework_privacy_manifest" ) {
377
+ visibility = [ " :*" ]
378
+ sources = [ " framework/PrivacyInfo.xcprivacy" ]
379
+ outputs = [ " $_flutter_framework_dir /PrivacyInfo.xcprivacy" ]
380
+ }
381
+
376
382
action (" copy_framework_headers" ) {
377
383
script = " //flutter/sky/tools/install_framework_headers.py"
378
384
visibility = [ " :*" ]
@@ -415,6 +421,7 @@ shared_library("copy_and_verify_framework_module") {
415
421
" :copy_framework_headers" ,
416
422
" :copy_framework_info_plist" ,
417
423
" :copy_framework_module_map" ,
424
+ " :copy_framework_privacy_manifest" ,
418
425
]
419
426
420
427
if (darwin_extension_safe ) {
@@ -437,6 +444,7 @@ group("universal_flutter_framework") {
437
444
" :copy_framework_icu" ,
438
445
" :copy_framework_info_plist" ,
439
446
" :copy_framework_module_map" ,
447
+ " :copy_framework_privacy_manifest" ,
440
448
" :copy_license" ,
441
449
]
442
450
Original file line number Diff line number Diff line change
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 >NSPrivacyTracking</key >
6
+ <false />
7
+ <key >NSPrivacyTrackingDomains</key >
8
+ <array />
9
+ <key >NSPrivacyCollectedDataTypes</key >
10
+ <array >
11
+ <dict />
12
+ </array >
13
+ <key >NSPrivacyAccessedAPITypes</key >
14
+ <array >
15
+ <dict >
16
+ <key >NSPrivacyAccessedAPIType</key >
17
+ <string >NSPrivacyAccessedAPICategoryFileTimestamp</string >
18
+ <key >NSPrivacyAccessedAPITypeReasons</key >
19
+ <array >
20
+ <string >0A2A.1</string >
21
+ <string >C617.1</string >
22
+ </array >
23
+ </dict >
24
+ <dict >
25
+ <key >NSPrivacyAccessedAPIType</key >
26
+ <string >NSPrivacyAccessedAPICategorySystemBootTime</string >
27
+ <key >NSPrivacyAccessedAPITypeReasons</key >
28
+ <array >
29
+ <string >35F9.1</string >
30
+ </array >
31
+ </dict >
32
+ </array >
33
+ </dict >
34
+ </plist >
You can’t perform that action at this time.
0 commit comments