I'm using next code to support sharing in my application:
//create the send intent
Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND);
//set the type
shareIntent.setType("text/plain");
//add a subject
shareIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,"subject");
String msg = https://play.google.com/store/apps/detailsid=com.rovio.amazingalex.premium
//add the message
shareIntent.putExtra(android.content.Intent.EXTRA_TEXT, msg);
//start the chooser for sharing
startActivity(Intent.createChooser(shareIntent, "Sharing..."));
Even without any extra for image from my side,
facebook takes a random image, that is not part of my application, but kind of associate with it.
For example, when trying to share "Amazing Alex", this is the attached image:

How can I change this image?