I have Files in Asset folder , how can i send them using ACTION.SEND intent to Gmail or Other apps exept Facebook (i know how to use JSON)?
i am using this code but it does not work, i have tried so many things , even Attaching File to GMAIL is successful but when sending it , nothing will be post to Gmail account!
Intent sendIntent = new Intent(Intent.ACTION_SEND);
sendIntent.putExtra("sms_body", body);
sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file:///android_assets/T1.png");
sendIntent.setType("image/png");
startActivity(sendIntent);
1 Answer