Intent share = new Intent(Intent.ACTION_SEND); share.putExtra(Intent.EXTRA_STREAM, Uri.parse(\"android.resource://\" + ContextID.getPackageName() + \"/\" + ResourceI
please change this line from your code and you will be able to share write ("audio/mp3") as bellow instead ("audio/*")
("audio/mp3")
("audio/*")
share.setType("audio/mp3");
this is because share type for whatsapp doesn't support ("audio/*") or ("*/*")
("*/*")