Make Ionic app appear in “Share” list and receive data
问题 I am trying to get an Ionic app to appear in the "Share" list when a user clicks the share button for example for an image. As far as I understand I have to add something like <intent-filter> <action android:name="android.intent.action.SEND" /> <category android:name="android.intent.category.DEFAULT" /> <data android:mimeType="image/*" /> </intent-filter> to the AndroidManifest.xml . That I can do using the cordova-custom-config plugin, I think. I would then have to handle that intent somehow