Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND);
if (!isAppInstalled(this, "com.instagram.android")) {
// bring user to the market to download the app.
shareIntent = new Intent(Intent.ACTION_VIEW);
shareIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
shareIntent.setData(Uri.parse("market://details?id=" + "com.instagram.android"));
startActivity(shareIntent);
} else {
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.setPackage("com.instagram.android");
shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));
if (video) {
shareIntent.setType("video/*");
} else {
shareIntent.setType("image/*");
}
startActivity(shareIntent);
}