I've received the following rejection of a SwiftUI MacOS app:
"We discovered one or more bugs in your app when reviewed on Mac running macOS 13.2.1. We received the attached error message at launch."
The full message is:
The open file operation failed to connect to the open and save panel service.
with the attached screenshot:
I've never seen this message before, and I've no idea how to reproduce it.
Per Technical Q&A QA1778, How to reproduce bugs reported against Mac App Store submissions, I've exported the archived app and run on a guest account on macOS 13.2.1, but it runs and can open files as expected.
I've tried opening a file on an external drive, and on iCloud Drive (successfully).
If it helps, it's a SwiftUI DocumentGroup
viewing app.
Has anybody seen this message before, or has any idea how I could reproduce it?
Additional info
I'm building with Xcode 14.2 with a minimum deployment target of macOS 13.1, on an M1 Max running 13.2.1.
According to the rejection, the reviewer was running on macOS 13.2.1.
The app is a viewer of .xcdatamodel
files, and its info.plist
contains the following document type:
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeIconFile</key>
<string></string>
<key>CFBundleTypeIconSystemGenerated</key>
<integer>1</integer>
<key>CFBundleTypeName</key>
<string>Core Data Model</string>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
<key>LSHandlerRank</key>
<string>Alternate</string>
<key>LSItemContentTypes</key>
<array>
<string>com.apple.xcode.model.data</string>
</array>
</dict>
</array>