ios - How to show myapp on AirDrop? Whats wrong in my Plist file? -
i trying list app on air drop . on photo gallery , hit share . airdrop open want show app .. app not showing on air drop. am, trying allow types of files
here info.plist file
<?xml version="1.0" encoding="utf-8"?> <!doctype plist public "-//apple//dtd plist 1.0//en" "http://www.apple.com/dtds/propertylist-1.0.dtd"> <plist version="1.0"> <dict> <key>cfbundledevelopmentregion</key> <string>en</string> <key>cfbundleexecutable</key> <string>$(executable_name)</string> <key>cfbundleidentifier</key> <string>org.apache.cordova.$(product_name:rfc1034identifier)</string> <key>cfbundleinfodictionaryversion</key> <string>6.0</string> <key>cfbundlename</key> <string>$(product_name)</string> <key>cfbundlepackagetype</key> <string>xpc!</string> <key>cfbundleshortversionstring</key> <string>1.0</string> <key>cfbundlesignature</key> <string>????</string> <key>cfbundleversion</key> <string>1</string> <key>cfbundledocumenttypes</key> <array> <dict> <key>cfbundletypename</key> <string>unknown file</string> <key>lshandlerrank</key> <string>alternate</string> <key>lsitemcontenttypes</key> <array> <string>public.calendar-event</string> <string>public.database</string> <string>public.executable</string> <string>public.data</string> <string>public.content </string> <string>public.item</string> </array> </dict> <dict> <key>cfbundletypename</key> <string>video</string> <key>lshandlerrank</key> <string>alternate</string> <key>lsitemcontenttypes</key> <array> <string>public.video</string> </array> </dict> <dict> <key>cfbundletypename</key> <string>image</string> <key>lshandlerrank</key> <string>alternate</string> <key>lsitemcontenttypes</key> <array> <string>public.image</string> </array> </dict> <dict> </dict> </plist>
what trying achieve has nothing airdrop. airdrop feature share files between devices on bluetooth or wifi.
in case, want register app able open kind of files.
should take @ this great answer brad larson.
for plist file, think forgot declare icon file needs used.
example previous link:
<key>cfbundledocumenttypes</key> <array> <dict> <key>cfbundletypeiconfiles</key> <array> <string>document-molecules-320.png</string> <string>document-molecules-64.png</string> </array> <key>cfbundletypename</key> <string>molecules structure file</string> <key>cfbundletyperole</key> <string>viewer</string> <key>lshandlerrank</key> <string>owner</string> <key>lsitemcontenttypes</key> <array> <string>com.sunsetlakesoftware.molecules.pdb</string> <string>org.gnu.gnu-zip-archive</string> </array> </dict> </array> <key>utexportedtypedeclarations</key> <array> <dict> <key>uttypeconformsto</key> <array> <string>public.plain-text</string> <string>public.text</string> </array> <key>uttypedescription</key> <string>molecules structure file</string> <key>uttypeidentifier</key> <string>com.sunsetlakesoftware.molecules.pdb</string> <key>uttypetagspecification</key> <dict> <key>public.filename-extension</key> <string>pdb</string> <key>public.mime-type</key> <string>chemical/x-pdb</string> </dict> </dict> </array>
Comments
Post a Comment