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?