Description
Plugin version:
6
Platform(s):
iOS
Current behavior:
On iOS, our app specifies it's own iOSDatabaseLocation
directory:
Library/Database
But I see that, just after the directory is created, the isExcludedFromBackup
flag on that directory is set to true
. See
sqlite/ios/Plugin/Utils/UtilsFile.swift
Line 50 in 891377f
Because of this, none of the databases in that directory will ever get backed up, to iCloud or to a computer. I'm pretty sure that this will also exclude the files from a direct device to device transfer.
As a mitigation, our app explicitly sets the flag back to false, but we weren't expecting the behaviour. As a result, our users are at risk of data loss if they transfer data to a new iPhone before updating our app. Not cool.
Solution
I see that historically, the flag was set purposefully to hide the database from iTunes (#207), but that is completely misguided as in practice, there's now no way for the dbs in that folder to be transferred to other devices as long as the flag remains...
Happy to discuss. iOS backups are a specialty of mine, used to work in that domain specifically.