When i publish to apple,
I was rejected by this reason
- 2.23 - Apps must follow the iOS Data Storage Guidelines or they will be rejected
In this message,
I check the config.xml file on project folder.
<preference name="BackupWebStorage" value="local" />
I guess this config preference option not working iCloud disable.
Change the option to.
<preference name="BackupWebStorage" value="none" />
In this time, waiting for review.
It work OR reject.
=========================================================
In my case,
I use cordova-plugin-file-transfer download path that "cdvfile://localhost/persistent/"
So, i change path to cordova.file.dataDirectory.
And i use imgcache.js lib.
https://github.com/chrisben/imgcache.js
in this lib,
iOS iCloud backup problem can fix
https://github.com/chrisben/imgcache.js/issues/73#issuecomment-54437775
This means that change the ImgCache.options.localCacheFolder
to cordova.file.dataDirectory
But i didn't this solution.
because i use android also.
Please no reject! Apple!