半夜我要吃西瓜
Results
1
comments of
半夜我要吃西瓜
In Android: if file name is note1.wav,you can try 1:change [ player.play('audio/note1.wav')] to [player.play('flutter_assets/audio/note1.wav')]. 2:change ··mediaPlayer.setDataSource(url);··to ·· AssetFileDescriptor fd = activity.getAssets().openFd(url); mediaPlayer.setDataSource(fd.getFileDescriptor(), fd.getStartOffset(), fd.getLength());·· i have no idea in iOS.