File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,7 +21,8 @@ let package = Package(
2121 . target(
2222 name: " SystemExtensionKit " ,
2323 dependencies: [ ] ,
24- path: " Sources " ) ,
24+ path: " Sources " ,
25+ resources: [ . copy( " Resources/PrivacyInfo.xcprivacy " ) ] ) ,
2526 . testTarget(
2627 name: " SystemExtensionKitTests " ,
2728 dependencies: [ " SystemExtensionKit " ] ) ,
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 >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 >
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ import SystemExtensions
1212#error("SystemExtensionKit doesn't support Swift versions below 5.5.")
1313#endif
1414
15- /// Current SystemExtensionKit version 2.0.0 . Necessary since SPM doesn't use dynamic libraries. Plus this will be more accurate.
16- public let version = " 2.0.0 "
15+ /// Current SystemExtensionKit version 2.0.3 . Necessary since SPM doesn't use dynamic libraries. Plus this will be more accurate.
16+ public let version = " 2.0.3 "
1717
1818public let SystemExtension = SystemExtensionKit . shared
1919
You can’t perform that action at this time.
0 commit comments