IOS File type association
I am trying to invoke my air app when a user clicks a text file in something like drop box. I found the following through a bit of research but when I add it into my InfoAdditions, I get an error.
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>txt</string>
<string>TXT</string>
</array>
<key>CFBundleTypeName</key>
<string>Text</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
I am just getting started with IOS development. What is currently in there right now is:
<key>UIDeviceFamily</key><array><string>1</string><string>2</string><string>2</string></array>
Any thoughts? I just want to read in text from a text file.
Thanks
