I'm having some trouble getting an app accepted into the App Store. The problem is that the database is getting backed up to the iCloud, according to Apple, although I attempted to prevent that by setting the skipBackupFlag for the database file to YES per Apples documantation.
I may have done something wrong, so I'd like to check that before resubmitting the app. Note that I'm storing the DB in the NSLibrary directory with my bundle's identifier appended as a subdirectory, so the actual directory is this:
/var/mobile/Applications/DA9AF74B-3735-4325-BE87-F4D3003AD205/Library/com.mycompany.myapp/my.db:
As a check, on my iPod I went to "settings", "iCloud storage and backup", "Manage Storage", "show all apps", but my app is showing up as only 1.3 kb. According to Apple, it's backing more than 7mb to iCloud, so for them the backup is including the database file.
One additional question (if I'm unable to figure out how to test the skipBackupFlag) - is it sufficient to just set the database file's skipBackupFlag to YES, or should the directory's skipBackupFlag also be set?