i am using phonegap audio plugin in my phonegap app. I have some audio files stored in www/audio folder.
For android i used "file:///android_asset/www/audio" to read local file.
For IOS i need help.
Thanks
i am using phonegap audio plugin in my phonegap app. I have some audio files stored in www/audio folder.
For android i used "file:///android_asset/www/audio" to read local file.
For IOS i need help.
Thanks
You will have trouble if called from a file other than 'index.html' because the part to trim off might not be 10 chars.
Try this:
Finally got it, reference:link
To get path i used this function
USAGE:
For IOS:
var snd = new Media( getPhoneGapPath() + 'test.mp3' );
For Android:prepend 'file://'
var snd = new Media( 'file://' + getPhoneGapPath() + 'test.mp3' );