Using Air ANE com.distriqt.Share on Android I get the message "No App can perform this action" when using the method
Share.service.share("shareText", image.bitmapData, "url", options);
It seems, that the bitmapData is causing this, as using the following parameters works fine (pass "null" for bitmapdata )
Share.service.share("shareText", null, "url", options);
This is not a solution though, as I need to share the image.
The BitmapData is valid BitmapData, I made sure of this.
Can anyone help?
I think we answered your question on GitHub, but this is most likely caused by incorrectly adding the FileProvider to your manifest additions in your AIR application descriptor:
Make sure you've replaced
APPLICATION_PACKAGE
with your AIR application's java package name, generally your application id prefixed byair.
.