File tree 3 files changed +3
-2
lines changed
3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 32
32
- DoJG: Zooming and scrolling using the mouse wheel conflicts each other
33
33
- Anki
34
34
- The order of languages when sending to Anki has been ignored
35
+ - Some audio files cut of on Android devices
35
36
36
37
-------------------------------------------------------------------------
37
38
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ class _KanaTableScreenState extends State<KanaTableScreen> with SingleTickerProv
77
77
/// The animation controller for the kana info card
78
78
late AnimationController _controller;
79
79
/// The player for the kana sound
80
- final mdk.Player kanaSoundPlayer = mdk.Player ();
80
+ final mdk.Player kanaSoundPlayer = mdk.Player ()..audioBackends = [ "AudioTrack" ] ;
81
81
82
82
83
83
@override
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ class _DictionaryWordTabState extends State<DictionaryWordTab> {
77
77
/// the directory in which the audio files are stored
78
78
late Directory audioFilesDir;
79
79
/// Playback of audio files
80
- final mdk.Player player = mdk.Player ();
80
+ final mdk.Player player = mdk.Player ()..audioBackends = [ "AudioTrack" ] ;
81
81
/// Is currently the google image search expanded
82
82
bool googleImagesIsExpanded = false ;
83
83
/// Is the conjugation table currently expanded
You can’t perform that action at this time.
0 commit comments