Hello,
Do anyone know how to fix the issue with the Native Audio not working on iOS?
This is my implementation:
this.platform.ready().then(() => {
this.nativeAudio.preloadComplex('0', 'assets/audio/0.mp3', 1, 1, 0);
this.nativeAudio.preloadComplex('1', 'assets/audio/1.mp3', 1, 1, 0);
this.nativeAudio.preloadComplex('2', 'assets/audio/2.mp3', 1, 1, 0);
this.nativeAudio.preloadComplex('3', 'assets/audio/3.mp3', 1, 1, 0);
this.nativeAudio.preloadComplex('4', 'assets/audio/4.mp3', 1, 1, 0);
this.nativeAudio.preloadComplex('5', 'assets/audio/5.mp3', 1, 1, 0);
}