Ionic, NativeAudio just play once

Hi,
I’ve problem with NativeAudio and preloadSimple on Android platform.
After successful preloadSimple, i’ll play my sound and all the things works, but after that the play() method just executes and no sound produced on Android device. I’ve used to catch errors on play method but it seems that it has called correctly with no error.

The code is as below:

public static playSound(nv: NativeAudio) {
        //if loaded before
        if (Sets.audio) {
            this.nv.play(this.SND_TIK);
            .then(err => { console.log("succ:" + err) }, err => { console.log("fail:" + err) });
        } else {
            this.nv.preloadSimple(this.SND_TIK, 'assets/sounds/tik.mp3').then(() => {
                Sets.audio = true;
                this.nv.play(this.SND_TIK)
                .then(err => { console.log("succ:" + err) }, err => { console.log("fail:" + err) });
            }).catch(err => {
                console.log(err);
            });
        }
    }