@@ -43,27 +43,32 @@ let package = Package(
43
43
. target(
44
44
name: " AppDevKit " ,
45
45
dependencies: [ " AppDevCommonKit " , " AppDevUIKit " , " AppDevAnimateKit " , " AppDevImageKit " , " AppDevListViewKit " , " AppDevCameraKit " ] ,
46
- path: " AppDevPods/All "
46
+ path: " AppDevPods/All " ,
47
+ resources: [ . copy( " PrivacyInfo.xcprivacy " ) ]
47
48
) ,
48
49
. target(
49
50
name: " AppDevCommonKit " ,
50
51
path: " AppDevPods/AppDevCommonKit " ,
52
+ resources: [ . copy( " PrivacyInfo.xcprivacy " ) ] ,
51
53
publicHeadersPath: " . "
52
54
) ,
53
55
. target(
54
56
name: " AppDevUIKit " ,
55
57
path: " AppDevPods/AppDevUIKit " ,
58
+ resources: [ . copy( " PrivacyInfo.xcprivacy " ) ] ,
56
59
publicHeadersPath: " . "
57
60
) ,
58
61
. target(
59
62
name: " AppDevAnimateKit " ,
60
63
path: " AppDevPods/AppDevAnimateKit " ,
64
+ resources: [ . copy( " PrivacyInfo.xcprivacy " ) ] ,
61
65
publicHeadersPath: " . "
62
66
) ,
63
67
. target(
64
68
name: " AppDevImageKit " ,
65
69
dependencies: [ " AppDevCommonKit " ] ,
66
70
path: " AppDevPods/AppDevImageKit " ,
71
+ resources: [ . copy( " PrivacyInfo.xcprivacy " ) ] ,
67
72
publicHeadersPath: " . " ,
68
73
cSettings: [
69
74
. headerSearchPath( " ../ " )
@@ -73,6 +78,7 @@ let package = Package(
73
78
name: " AppDevListViewKit " ,
74
79
dependencies: [ " AppDevUIKit " , " AppDevCommonKit " ] ,
75
80
path: " AppDevPods/AppDevListViewKit " ,
81
+ resources: [ . copy( " PrivacyInfo.xcprivacy " ) ] ,
76
82
publicHeadersPath: " . " ,
77
83
cSettings: [
78
84
. headerSearchPath( " ../ " )
@@ -81,12 +87,15 @@ let package = Package(
81
87
. target(
82
88
name: " AppDevCameraKit " ,
83
89
path: " AppDevPods/AppDevCameraKit " ,
90
+ resources: [ . copy( " PrivacyInfo.xcprivacy " ) ] ,
84
91
publicHeadersPath: " . "
85
92
) ,
86
93
. testTarget(
87
94
name: " AppDevKitTests " ,
88
95
dependencies: [ " AppDevKit " ] ,
89
- path: " AppDevKitTests " )
96
+ path: " AppDevKitTests " ,
97
+ resources: [ . copy( " PrivacyInfo.xcprivacy " ) ]
98
+ )
90
99
]
91
100
)
92
101
0 commit comments