With the PlistExtras, i can use the following attachments of emails in my app:
.pdf, .csv, .doc, .ppt.
How is it possible to use all kinds of file-formats in my app? I want, that my app is allways in the standard file handling dialog, because my app doesn't open the files. It only send them to a server. Is it possibel without listing all kinds of formats?
Thanks for help...
.pdf, .csv, .doc, .ppt.
How is it possible to use all kinds of file-formats in my app? I want, that my app is allways in the standard file handling dialog, because my app doesn't open the files. It only send them to a server. Is it possibel without listing all kinds of formats?
B4X:
#PlistExtra:<key>CFBundleDocumentTypes</key>
#PlistExtra:<array><dict><key>CFBundleTypeIconFiles</key><array/>
#PlistExtra:<key>CFBundleTypeName</key>
#PlistExtra:<string>name</string>
#PlistExtra:<key>LSItemContentTypes</key><array>
#PlistExtra:<string>public.content</string>
#PlistExtra:</array></dict></array>
Thanks for help...