Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2.23: Apps must follow the iOS Data Storage Guidelines or they will be rejected #199

Open
jmartos89 opened this issue Mar 2, 2014 · 4 comments

Comments

@jmartos89
Copy link

By uploading the app to the app store have given me this error.

I am using a sqlite map to load in offline mode, so this map is being seen as a backup stored in iCloud, so I'm skipping storage restrictions.

The code is as follows:

[[RMDBMapSource alloc] initWithPath: @ "map.sqlite"];

The map.sqlite size is 23MB.

@vburojevic
Copy link

Hi,

Did you manage to resolve this issue?

@lferro-metropolis
Copy link

You need to mark that file as non-cloud storage:
http://stackoverflow.com/questions/16239147/ios-do-not-back-up-attribute

@vburojevic
Copy link

My map sqlite file is located in main bundle, not documents directory, does it need to be marked as well?

@lferro-metropolis
Copy link

If the file is with main bundle, you can't update it (it's read only). And nope, you don't need to mark anything on the bundle as non-cloud. Only the files that you create on the doc area, if they are not intended to go to the cloud.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants