hi audio native not work on android but work in ios please help me
the same for me.
my code is
if (this.platformService.isAndroid()) {
let id = new Date().toISOString() + `${sound}`;
this.platform.ready().then(() => {
this.nativeAudio.preloadComplex(id, `assets/audio/phonemes/${sound}.mp3`, 1, 1, 0).then(
() => {
console.log(`phoneme sound ${sound} _PRELOAD_`);
this.nativeAudio.play(id).then(
() => {
console.log(`phoneme sound ${sound} _PLAY_`);
$Amw(`.speaker-item-fr`).unbind().on({
'click': () => {
var src = ($(this).attr('src') === 'assets/icon/i-speaker-fill.svg')
? 'assets/icon/i-speaker.svg'
: 'assets/icon/i-speaker-fill.svg';
$(this).attr('src', src);
}
});
},
(err) => { console.log('play error', err); }
);
this.nativeAudio.stop(id).then(
() => {
console.log(`phoneme sound ${sound} _STOP_`);
$Amw(`.speaker-item-fr`).unbind().on({
'click': () => {
var src = ($(this).attr('src') === 'assets/icon/i-speaker.svg')
? 'assets/icon/i-speaker-fill.svg'
: 'assets/icon/i-speaker-fill.svg';
$(this).attr('src', src);
}
});
},
(err) => { console.log('stop error', err); });
this.nativeAudio.unload(id).then(
() => { console.log(`phoneme sound ${sound} _UNLOAD_`); },
(err) => { console.log('unload error', err); });
},
(err) => { console.log('preload error', err); }
);
}).catch(error => { console.log("platform ready", error) });
}
the console.log display this message in the console :
PRELOAD, PLAY, STOP, UNLOAD
but there is no sound in the speakers.
great thank for eny help