I\'m trying to make a button for sharing an audio file. This is not working. First I tried to send the file right from my raw folder without copying it to the card of the ph
I'm using:
final Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.setType("audio/mp3");
shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(Environment.getExternalStorageDirectory().toString() + "/breakfast.mp3"));
startActivity(Intent.createChooser(shareIntent, "Condividi attraverso:"));
but gmail say "Can't attach empty file"