How to make an app a file receiver for images on iOS?
Hi,
How to make an app a file receiver for images on iOS?
I did it for the Android app.xml like this:
<intent-filter>
<action android:name="android.intent.action.SEND"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="text/plain"/>
<data android:mimeType="image/jpg"/>
<data android:mimeType="image/jpeg"/>
<data android:mimeType="image/png"/>
<data android:mimeType="image/gif"/>
</intent-filter>
How to do it for iOS?
(I'm using Adobe Air 4.0)
Thank you! ![]()
