ProgressHUD icon indicating copy to clipboard operation
ProgressHUD copied to clipboard

Change .process to .copy in Package.swift

Open relatedcode opened this issue 8 months ago • 0 comments
trafficstars

Change .process to .copy in Package.swift

```swift
 .target(
     name: "ProgressHUD",
     dependencies: [],
     path: "ProgressHUD/Sources",
     resources: [
         .copy("PrivacyInfo.xcprivacy"),  // Changed to .copy
     ]
 ),
```

Reasoning: .copy makes the intention very clear; copy this file as-is from the source to the destination, which helps ensure that Xcode doesn't attempt to perform any processing that results in the file not being recognized.*

relatedcode avatar Mar 11 '25 18:03 relatedcode