在 Android 上使用 Air ANE com.distriqt.Share我在使用该方法时收到消息“No App can perform this action”
Share.service.share("shareText", image.bitmapData, "url", options);
似乎是 bitmapData 导致了这种情况,因为使用以下参数可以正常工作(为 bitmapdata 传递“null”)
Share.service.share("shareText", null, "url", options);
但这不是解决方案,因为我需要共享图像。
BitmapData 是有效的 BitmapData,我确定了这一点。
任何人都可以帮忙吗?