Reputation: 1347
My code working fine in all devices below android 10. But when app run in android 10 mediaplayer not working. here my code
mplayer = new MediaPlayer();
mplayer.setDataSource(this, Uri.fromFile(new File(SongPathlocation)));
mplayer.setAudioStreamType(AudioManager.STREAM_MUSIC);
mplayer.prepare();
mplayer.setOnPreparedListener(new MediaPlayer.OnPreparedListener() {
@Override
public void onPrepared(MediaPlayer mp) {
mplayer.start();
}
});
Upvotes: 3
Views: 545
Reputation: 11
Try to add to AndroidManifest.xml
file, in application section this:
android:requestLegacyExternalStorage="true"
Upvotes: 1