Skip to main content
Known Participant
September 2, 2014
Question

How to make an app a file receiver for images on iOS?

  • September 2, 2014
  • 0 replies
  • 841 views

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!

This topic has been closed for replies.