Phonegap 1.9.0 application crashes due to _NSURLIsExcludedFromBackupKey error

I am trying to download the HelloWorld example in Phonegap 1.9.0 using iOS, and I am having some problems with this ... I am following this: http://docs.phonegap.com/en/1.9.0/guide_getting-started_ios_index.md .html # Getting% 20Started% 20with% 20iOS It talks about the Apple Mach-O Linker (Id) error.

When I click on the error, she says:

Undefined symbols for architecture i386: "_NSURLIsExcludedFromBackupKey", referenced from: -[CDVFile setMetadata:withDict:] in Cordova ld: symbol(s) not found for architecture i386 clang: error: linker command failed with exit code 1 (use -v to see invocation) 

I wrote a similar application that does not use a space in the phone, and it works correctly ... But when I used the difference in the phone, it gives me this error. Not sure what to do ... Need to be guided.

+8
ios iphone ios5 cordova
source share
1 answer

The latest version of the telephone conversation: 1.9.0 has an error: _NSURLIsExcludedFromBackupKey.

To solve this problem, add this to AppDelegate.m

 NSString * const NSURLIsExcludedFromBackupKey =@"NSURLIsExcludedFromBackupKey"; 

This will help solve this problem .. Nothing to do with architecture ...

Those new to PhoneGap can watch these videos:

PArt 1: http://www.youtube.com/watch?v=zXf1zyKQ5Hw&feature=relmfu

Part 2: http://www.youtube.com/watch?v=t95KG_SFppU

+34
source share

All Articles