I’ve added the following to platforms/android/AndroidManifest.xml
:
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
The above succeeds in opening my application after sharing an image from my photo gallery. Now, I need a way to catch the photo shared from the gallery and handle it in the Ionic app.
Is this possible with ngCordova? If so, or if some parallel approach is known, references and suggestions would be greatly appreciated.
Thank you,
G