Re: storing data on iOS devices

2012-09-11 Thread Chris Sheffield
in the > 'documents' folder and using the 'iphoneDoNotBackUpFile' function set a flag > as to whether things should be backed up to icloud/itunes or not... > > be well > > Dixie > >> From: cmsheffi...@me.com >> Subject: storing data on iOS devic

RE: storing data on iOS devices

2012-09-10 Thread John Dixon
should be backed up to icloud/itunes or not... be well Dixie > From: cmsheffi...@me.com > Subject: storing data on iOS devices > Date: Mon, 10 Sep 2012 09:13:10 -0600 > To: use-livecode@lists.runrev.com > > This has come up before on the list, but I haven't been able t

storing data on iOS devices

2012-09-10 Thread Chris Sheffield
This has come up before on the list, but I haven't been able to find a reliable location where I can store persistent data without it being backed up to iTunes. We've got an app that downloads and stores quite a bit of media (audio, pictures, etc.) that needs to persist on the device but doesn't

Re: Storing data on iOS

2012-07-26 Thread Richard Gaskin
FlexibleLearning wrote: For those who have gone before those who have gone before... What sort of files does Apple allow to be downloaded? 'text' only files? Defined by type of file (video, pdf etc)? Is there such a list? I think I have established that 'executable' files will be rejected (i.e

RE: Storing data on iOS

2012-07-26 Thread FlexibleLearning
ndman Gay" To: LiveCode Mailing List Subject: Storing data on iOS Message-ID: <50103d6f.3030...@hyperactivesw.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed For those who have gone before me: I have some files that are downloaded from a server and stored on the device

Re: Storing data on iOS

2012-07-25 Thread ddas
You may just set the attribute of a folder and not bother with individual files. According to apple: Starting in iOS 5.0.1 a new “do not back up” file attribute has been introduced allowing developers to clearly specify which files should be backed up, which files are local caches only and subj

Re: Storing data on iOS

2012-07-25 Thread J. Landman Gay
On 7/25/12 9:12 PM, ddas wrote: They will notice and they will reject your app. The only way around is to set the extended attribute of your folder in the documents folder to "do not back up." The engine lets us do it by file, which would be fine for my purposes. Just out of curiosity, does a

Re: Storing data on iOS

2012-07-25 Thread Monte Goulding
It's in the engine now. On 26/07/2012, at 12:12 PM, ddas wrote: > They will notice and they will reject your app. > > The only way around is to set the extended attribute of your folder in the > documents folder to "do not back up." > I brought up this issue in December. However it seems like

Re: Storing data on iOS

2012-07-25 Thread ddas
They will notice and they will reject your app. The only way around is to set the extended attribute of your folder in the documents folder to "do not back up." I brought up this issue in December. However it seems like the prob has been recently solved by mergext. http://mergext.com/home/merg

Re: Storing data on iOS

2012-07-25 Thread J. Landman Gay
Thanks for all the suggestions everyone. If the cache is unlikely to get erased very often then I think the simplest thing is to just use that. BTW, Chipp, I wasn't too worried about the file storage not working, I was concerned that Apple would reject the app for storing data in Documents if

Re: Storing data on iOS

2012-07-25 Thread Chipp Walters
Hi Jacque, I'm storing everything in documents-- in fact I have my own "cache" folder in there as well. Because of my workflow, constantly updating via DropBox, I tend not to 'include' files outside a single stack, and I use the stack to SpitOut on OpenStack different resources, such as template d

Re: Storing data on iOS

2012-07-25 Thread Terry Judd
I use the cache folder, the assumption being that is fairly unlikely that it will be cleared. Terry... On 26/07/2012, at 05:35 AM, Monte Goulding wrote: > Hmm... Do you mean backed up as in iTunes/iCloud? That would appear to be > unnecessary. I think cache is only cleared in low storage situa

RE: Storing data on iOS

2012-07-25 Thread Ralph DiMola
ssage- From: use-livecode-boun...@lists.runrev.com [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of J. Landman Gay Sent: Wednesday, July 25, 2012 2:40 PM To: LiveCode Mailing List Subject: Storing data on iOS For those who have gone before me: I have some files that are downloaded fr

Re: Storing data on iOS

2012-07-25 Thread Monte Goulding
Hmm... Do you mean backed up as in iTunes/iCloud? That would appear to be unnecessary. I think cache is only cleared in low storage situations so it might be appropriate from the users perspective. Otherwise I'd go with documents folder with the do not backup property set. Cheers -- M E R Goul

Storing data on iOS

2012-07-25 Thread J. Landman Gay
For those who have gone before me: I have some files that are downloaded from a server and stored on the device. The files will be updated periodically. I don't want to download them repeatedly unless they've changed. Apple says not to store data in the documents folder if it can be retrieve