Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

According to the developer documentation on Apple's website: https://developer.apple.com/library/ios/#qa/qa1719/_index.html

Starting in iOS 5.0.1 a new "do not back up" file attribute has been introduced allowing developers to clearly specify which files should be backed up. (com.apple.MobileBackup)

I'm wondering if this is supported in PhoneGap / Cordova, as I want to be able to store some offline data (data that can be downloaded or otherwise recreated, but that the user expects to be reliably available when offline) that is not backed up on iCloud.

Persistance is clearly documented (LocalFileSystem.PERSISTENT - http://docs.phonegap.com/en/1.5.0/phonegap_file_file.md.html#LocalFileSystem) on the PhoneGap website, but there seems to be no way of ensuring a saved file is not backed up to the iCloud.

share|improve this question

3 Answers

up vote 2 down vote accepted

I'm still holding out for a solution within PhoneGap / Cordova but as a temporary work around...

In my AppDelegate init:

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);

// Get documents directory
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *formularyPath = [documentsDirectory stringByAppendingPathComponent:@"OfflineData"];

if (![[NSFileManager defaultManager] fileExistsAtPath:formularyPath])
    [[NSFileManager defaultManager] createDirectoryAtPath:formularyPath withIntermediateDirectories:NO attributes:nil error:nil];

// Prevent iCloud backup
u_int8_t b = 1;
setxattr([formularyPath fileSystemRepresentation], "com.apple.MobileBackup", &b, 1, 0, 0);

Don't forget #import "sys/xattr.h"

This creates a new folder under documents and sets the no backup attribute.

You can then save your files in PhoneGap using the persisted local file store option and files saved in your new subdirectory will not be backed up.

share|improve this answer
Thanks for this answer @LeeCrossley!! I'm involved in a PhoneGap project which downloads data that should persist and not to be backed up, but, as the version we are using is 1.7, we can't use the setMetadata function, and upgrading to 1.8 would be quite a mess now. Just a question, have you posted anything with this code to the app store? I don't see a reason why it could be rejected, but, as I do not have experience neither with objective-c nor posting to the app store, I'd like to make it for sure – davids Aug 21 '12 at 9:46
Yes, this app: itunes.apple.com/gb/app/nice-bnf/id523093958 uses the above code and runs 1.7 currently. – Lee Crossley Sep 14 '12 at 10:33

Here is a functioning JS code sample leveraging the Cordova framework that I believe solves what Apple is looking for.

document.addEventListener("deviceready",onDeviceReady,false);

function onSetMetadataSuccess() {
    console.log("success setting metadata - DONE DONE DONE!")
}
function onSetMetadataFail() {
    console.log("error setting metadata")
}
function onGetDirectorySuccess(parent) {
    console.log("success getting dir");
    parent.setMetadata(onSetMetadataSuccess, onSetMetadataFail, { "com.apple.MobileBackup": 1});
}
function onGetDirecotryFail() {
    console.log("error getting dir")
}

function onFileSystemSuccess(fileSystem) {
    console.log("onFileSystemSuccess()")

    var dirEntry = fileSystem.root;
    dirEntry.getDirectory('Backups', {create: true, exclusive: false},
            onGetDirectorySuccess, onGetDirecotryFail);

}

function onFileSystemFail(evt) {
    console.log("!!!!! onFileSystem fail...")
    console.log(evt.target.error.code);
}

/* When this function is called, PhoneGap has been initialized and is ready to roll */
function onDeviceReady()
{

    // this and subsequent callbacks tells iOS not to store our data in iCloud.
    // without it they rejected our app because of the way PG 1.8 does local->tem storage
    window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, onFileSystemSuccess, onFileSystemFail);

}
share|improve this answer

This follows on from dsldsl's answer... I found that I had to do it this way to get it to work: (http://mail-archives.apache.org/mod_mbox/cordova-dev/201210.mbox/%3C2000708853.727.1349369987450.JavaMail.jiratomcat@arcas%3E)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.