Will Using Process or /usr/bin/zip in a Swift/SwiftUI macOS App Cause App Store Rejection or Post-Approval Issues?
I am developing a Swift/SwiftUI macOS app and using the Process class to execute /usr/bin/zip
for zipping folders and files. The app works fine in the sandboxed environment, handling files and folders created by the app itself. I do not want to use third-party frameworks for zipping, as I prefer to use Process for this functionality.
I have the following concerns:
Will Using Process or /usr/bin/zip in a Swift/SwiftUI macOS App Cause App Store Rejection or Post-Approval Issues?
I am developing a Swift/SwiftUI macOS app and using the Process class to execute /usr/bin/zip
for zipping folders and files. The app works fine in the sandboxed environment, handling files and folders created by the app itself. I do not want to use third-party frameworks for zipping, as I prefer to use Process for this functionality.
I have the following concerns: