Hi,
My app on launch loads some data into SQLite in the "Library" folder. Due to Apple's storage guidelines, I have set the flag for not backing up to iCloud
NSFileManager.SetSkipBackupAttribute(dbLocation,true);
However, the review process has failed for violating the storage guideline.
Is there anything else I need to do here? The code itself is very similar to MWC sample.
Cheers