0

I know how to share file from SD Card, but this time i have to share file from assets folder.

See below code, which i used to share file from SD

String fileToShare = Environment.getExternalStorageDirectory().getPath() +"/Downloads/" + fileName;
newFile = new File(fileToPrint);
Intent intent = new Intent();   

intent.setAction(Intent.ACTION_SEND);
intent.setType("audio/mp3");
intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(newFile));
startActivity(intent);
Sun
  • 6,768
  • 25
  • 76
  • 131

0 Answers0