i am trying to open the music library from the device and return with any audio file i am using openmusiclibrary() function ... it works on ios but i am running on android ... Is there any function do same job
function choosesound(e){ var options = { success : function(e) {var file = e.media;}, cancel : function() {}, error : function(Error) {}, mediaTypes : [Ti.Media.MUSIC_MEDIA_TYPE_ANY_AUDIO] }; Ti.Media.Andoid.openMusicLibrary(); }Thanks.