Search Issue Tracker
Fixed in 5.3.4
Votes
1
Found in
5.3.2p2
Issue ID
771597
Regression
No
[iOS] Asset bundles downloaded through LoadFromCacheOrDownload are backed up to iCloud
Steps to reproduce:
1. Open the attached project
2. Build the project for iOS
3. Run the project on a device that has iCloud set up
4. Wait a few minutes for all the asset bundles to finish downloading
5. When done, go to Settings/iCloud/Storage & Backup/Manage Storage and click on the current device
6. Notice that the application is taking up to 1GB of backup space
Workaround: Update the UnityUpdateNoBackupFlag function in Filesystem.mm file in Xcode project with this:
extern "C" int UnityUpdateNoBackupFlag(const char* path, int setFlag)
{
NSURL* URL= [NSURL fileURLWithPath: [NSString stringWithUTF8String: path]];
if(![[NSFileManager defaultManager] fileExistsAtPath: [URL path]])
return false;
NSError *error = nil;
BOOL success = [URL setResourceValue: [NSNumber numberWithBool: YES]
forKey: NSURLIsExcludedFromBackupKey error: &error];
if(!success){
NSLog(@"Error excluding %@ from backup %@", [URL lastPathComponent], error);
}
return success;
}
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- “Readme” Asset is unreadable in the Inspector window when switching Editor Theme to Light
- “NullReferenceException” error thrown when switching Editor Theme to Light if “Unity Version Control” tab is enabled
- A Warning is displayed in the Inspector when a Mesh with any Material is added as a Terrain Detail
- [Android][Vulkan] Memory leak when playing and stopping a video using the Video Player on some devices
- Caret moves by a character when typing "." and any number into 'Grid and Snap' toolbar's input field
evan_galxyz
May 18, 2016 18:00
For others, the fix is actually in 5.3.4p1 - the first patch release for version 5.3.4
evan_galxyz
May 18, 2016 17:56
This bug still exists in 5.3.4f1. How do we reopen this issue?
valeriy-malevaniy
May 04, 2016 11:26
Still reproduce in 5.3.4f1
OxyDev
May 04, 2016 11:25
Unity 5.3.4f1: bug is still reproduced. Workaround works, thanks!
Huacanacha
Mar 07, 2016 22:20
This caused us an app rejection (with some critical bug fixes) due to iCloud usage. Severity is quite high as the workaround is kludgy and impractical for automated build systems.
Thanks to whoever reported the problem and added the workaround ;)