Re: Access mp3 files in iOS

2015-04-03 Thread Lane Friesen
ubject: Re: Access mp3 files in iOS Using Adobe AIR's File class would be the best option for this. This would ensure that the app works correctly in a cross-platform way. Here are all the locations you can access on iOS: iOS Application /var/mobile/Applications/uid/filename.app Appl

Re: Access mp3 files in iOS

2015-04-02 Thread OmPrakash Muppirala
Using Adobe AIR's File class would be the best option for this. This would ensure that the app works correctly in a cross-platform way. Here are all the locations you can access on iOS: iOS Application /var/mobile/Applications/uid/filename.app Application-storage /var/mobile/Applications/uid

Access mp3 files in iOS

2015-04-01 Thread Lane Friesen
In Android, a file myFile in directory myDirec on device storage is accessed (read-only) by xmlLoader.load(new URLRequest(file://mnt/sdcard/myDirec/myFile)); The files have been placed onto the device by the user previously, usually through a USB connection. What is the best practice method