I am trying to set my android app to accept intents from other apps for images
This is my android manifest.xml
<?xml version="1.0" encoding="utf-8"?>
<intent-filter>
<action android:name="android.intent.action.GET_CONTENT" />
<category android:name="android.intent.category.OPENABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="*/*" />
<data android:mimeType="vnd.android.cursor.dir/image" />
But I launch the program in the simulator and try to pick an image from the Messaging app and only get the Gallery and File Manager as options.
Thanks for any help,
Joseph