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
- Articulation Body with 'Revolute' Joint Type has erratic behavior when Upper Limit is set to above 360
- WebGL Player fails to render Scene when Terrain with Detail Mesh is added and WebGPU Graphics API is used
- Inconsistent errors are logged when different types are passed into the Query "Q<>" method in UIToolkit and the ancestor VisualElement is null
- Crash on GetMaterialPropertyByIndex when opening a specific Scene
- Discrepancies in the styling are present when using a TSS file instead of a USS file in custom EditorWindow
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 ;)