I have a recycler view of the audio file, The audio file stored in the raw folder. Now, I want to share my Audio file with other apps. I'm trying this code in adapter clss.
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(
"android.resource://"+ context.getPackageName()+"/raw/"
+ songs[getAdapterPosition()]));
shareIntent.setType("audio/mp3");
context.startActivity(shareIntent);
But it's not working. How to solve this.
Thanks in advance.