Im trying to share a mp3 file through whatsapp. It works perfectly with other apps like gmail, but it dosent works on whatsapp. Can anyone help me? Do I need to add some put
WhatsApp also accepts OGG format:
Intent shareIntent = new Intent(Intent.ACTION_SEND); shareIntent.setType("audio/ogg"); shareIntent.putExtra(Intent.EXTRA_STREAM, getSoundUri()); startActivity(shareIntent);