So, I am trying to specify my custom iOS icons for my application in the config.xml file using the guide at https://build.phonegap.com/docs/config-xml
However, when I use the line of code that they give you, the application does not load and throws an error in Xcode;
2013-07-24 09:32:06.121 iLens[19852:c07] *** Assertion failure in -[CDVConfigParser parser:parseErrorOccurred:], /Applications/MAMP/htdocs/carlzeiss/phonegap-2.9.0/iLens/CordovaLib/Classes/CDVConfigParser.m:93 2013-07-24 09:32:06.121 iLens[19852:c07] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'config.xml parse error line 38 col 40' *** First throw call stack: (0x173012 0x28eee7e 0x172e78 0x1564665 0x7a352 0x15aca08 0x58e02af 0x58fa745 0x590225a 0x59044e5 0x5903f07 0x15ac8fe 0x15ac890 0x15acb46 0x15acbfa 0x590d2 0x57ea0 0x57f6e 0x83749 0x48de1e 0x5802e 0x837ad 0x8326b 0x3ac157 0x3ac747 0x3ad94b 0x3becb5 0x3bfbeb 0x3b1698 0x3720df9 0x3720ad0 0xe8bf5 0xe8962 0x119bb6 0x118f44 0x118e1b 0x3ad17a 0x3aeffc 0x82f4c 0x82ea9) libc++abi.dylib: terminate called throwing an exception
If I remove the gap: platform = "ios" part , the application will load, but the icon will not change.
Does anyone have a working example of changing icons through the config.xml file?
Note. I do not think this is a duplicate of a question related to this question. My question is adding icons to the config.xml file, since you have to do this according to the PhoneGap docs. However, it turns out that they did not support this option at the time.
ios cordova
olimortimer
source share