Skip to content

Instantly share code, notes, and snippets.

@matthieu-D
Created June 21, 2017 15:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save matthieu-D/801c4fdd7925eb7bf5b88f48fb11b31e to your computer and use it in GitHub Desktop.
Save matthieu-D/801c4fdd7925eb7bf5b88f48fb11b31e to your computer and use it in GitHub Desktop.
import { NativeAudio } from '@ionic-native/native-audio';
.
.
.
export class HomePage {
constructor(public nativeAudio: NativeAudio) {
nativeAudio.preloadComplex('track1', 'assets/audio/track1.mp3', 1, 1, 0).then(this.onSuccessPreloading, this.onError);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment