Soujanya U Holla
Soujanya U Holla

Reputation: 41

document based app is not appearing in 'open with' option in iOS 13

There is a document reader app which is designed to open a specific extension file from other apps such as mails, dropbox. The app appears in the 'open with' option till iOS 12. But the same when tried in iOS 13 beta, the app is not listing in the options shown in 'open with'.

Kindly let me know, is there any particular change required to be done for iOS 13 info.plist to make the app appear in the list? All the recommended settings such as CFBundleDocumentTypes,LSItemContentTypes and Exported Type UTI as suggested by Apple for opening document based app from other apps have been done. The issue still exists in iOS 13 only.

Upvotes: 3

Views: 1035

Answers (1)

tttemplar
tttemplar

Reputation: 73

I encountered same issue when updating my app to iOS 13 environment. I did some research and found this post works for me: https://forums.developer.apple.com/message/383499#383279

I changed value to the UTTypeConformsTo key from "application/prs.xxxxdata" (some arbitrary name) to "public.data" and my app returned to the "Open With" list when trying to open the specific filetype.

Upvotes: 2

Related Questions