Posts

Post not yet marked as solved
1 Replies
385 Views
I have a macOS app that used to accept drag and drop of disks as well as DMG files.Since Catalina, it does not accept disks any more, but DMG files still work as before.I tried full disk access, but the behavior didn't change.Here's an excerpt of my plist file:<key>CFBundleDocumentTypes</key> <array> <dict> <key>CFBundleTypeExtensions</key> <array> <string>dmg</string> </array> <key>CFBundleTypeName</key> <string>dmg</string> <key>CFBundleTypeRole</key> <string>Shell</string> <key>LSHandlerRank</key> <string>Default</string> </dict> <dict> <key>CFBundleTypeName</key> <string>disk</string> <key>CFBundleTypeOSTypes</key> <array> <string>disk</string> </array> <key>CFBundleTypeRole</key> <string>Shell</string> <key>LSHandlerRank</key> <string>Default</string> </dict> </array>Any ideas?
Posted Last updated
.