distriqt / airnativeextensions

DEPRECATED: Original repository of the distriqt native extensions and is no longer maintained. Please see our site for the latest ANEs
https://airnativeextensions.com
2 stars 0 forks source link

Facebook API - Share bitmap causes crash - params.image #221

Closed MattVisser closed 8 years ago

MattVisser commented 9 years ago

I'm using this on Android.

If I do a share using these params it works fine for me:

var params:FacebookShareParams = new FacebookShareParams(); params.title = "Title of the post"; params.caption = "Caption of the post"; params.description = "Description of the post";

but if I try to use the params.image it just crashes. var _bitmapData:BitmapData = new BitmapData(400,400, false, 0xff0000); params.image = _bitmapData;