I'm sending beta builds of a Mac Catalyst app by distributing them to beta testers with a developer ID, and the beta testers are emailing me back crash logs. I can drag iOS crash logs into the View Device Logs window of Xcode to symbolicate them, but when I try that with the macOS crash logs, the window doesn't highlight and doesn't receive the dragged file.
While following a tutorial to symbolicate manually from the command line, I realized there are no dSYM files in my build archives. If I click a build in the Xcode organizer, select Show In Finder, then navigate into the archive's dSYMs folder, it is empty.
Actually, recent versions of my app use an AppKit bundle for multiple window support, and those builds do have an AppKitBridge.bundle.dSYM file in the dSYMs folder. I don't think this is blocking the creation of the dSYM file for the main app, because I can look back at the archives for older versions and it wasn't generated for those, either.
According to Apple's Xcode documentation, I need to have the Debug Information Format build setting set to DWARF with dSYM File, and I do:
Does this sound like the reason Xcode won't let me drag the logs in, and if so, what else do I need to generate the dSYM files?