i have send my app to itunes store and for now my app have be reject ,because in the documents folder the data is more than 16mb.
the help i get from the itunes support is that i need to (prevent the file from backed up to icloud.)
is any way to do this in livecode?
Thank you
How do I prevent files from being backed up to iCloud
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Re: How do I prevent files from being backed up to iCloud
I recently ran into this problem as well. You can use the command:
To stop a specific file from being backed up. If you loop over all of the files in the documents and set this property on them, you should be good to go.
Let me know how that works for you.
-Jacob
Code: Select all
iphoneSetDoNotBackupFile "filename", true
Let me know how that works for you.
-Jacob
Re: How do I prevent files from being backed up to iCloud
thank you Jacob i will give a tryJacobS wrote:I recently ran into this problem as well. You can use the command:To stop a specific file from being backed up. If you loop over all of the files in the documents and set this property on them, you should be good to go.Code: Select all
iphoneSetDoNotBackupFile "filename", true
Let me know how that works for you.
-Jacob