You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Files need to be read from the same storage class they're saved to, and two files can have the same name
70
-
if they're located in different storages. The options are:
69
+
Files need to be read from the same storage class they're saved to, and two files can have the same
70
+
name if they're located in different storages. The options are:
71
71
72
72
#### storage.backedUp
73
73
74
-
The default. Files stored in this location will automatically be backed up by iCloud on iOS and [Auto Backup for Apps](https://developer.android.com/guide/topics/data/autobackup.html) on Android. This is generally for user-generated content that cannot be re-generated / re-downloaded.
74
+
The default. Files stored in this location will automatically be backed up by iCloud on iOS and
75
+
[Auto Backup for Apps](https://developer.android.com/guide/topics/data/autobackup.html) on Android
76
+
devices running Marshmallow or newer (6.0+). This is where you'd want to put user generated content.
75
77
76
-
Corresponds to `<Application_Home>/Documents` on iOS and [Context.getFilesDir()](https://developer.android.com/reference/android/content/Context.html#getFilesDir()) on Android.
78
+
Corresponds to `<Application_Home>/Documents` on iOS and
This is for files that are possible to re-generate / re-download, but are still important to keep around. F.ex. offline maps.
84
+
This is for files that are possible to re-generate / re-download, but are still important to keep
85
+
around during low storage situations. F.ex. offline maps. The system will almost always keep these
86
+
files around.
81
87
82
-
Corresponds to `<Application_Home>/Library/Caches` with "do not backup" flag on iOS and [Context.getNoBackupFilesDir()](https://developer.android.com/reference/android/content/Context.html#getNoBackupFilesDir()) on Android.
88
+
Corresponds to `<Application_Home>/Library/Caches` with "do not backup" flag on iOS, and a
Corresponds to `<Application_Home>/Library/Caches` on iOS and [Context.getExternalCacheDir()](https://developer.android.com/reference/android/content/Context.html#getExternalCacheDir()) on Android.
89
104
90
105
#### storage.temporary
91
106
92
-
Location for temporary caches and data. You should still clean up / delete the files when they are no longer in use.
107
+
Location for temporary caches and data. The system can get rid of these at any time, but you are
108
+
still required to delete them manually to free up space when they are no longer in use.
93
109
94
-
Corresponds to `<Application_Home>/tmp` on iOS and [Context.getCacheDir()](https://developer.android.com/reference/android/content/Context.html#getCacheDir()) on Android.
110
+
Corresponds to `<Application_Home>/tmp` on iOS and
0 commit comments