The cordova.xml file is a configuration file that specifies settings for whitelisted urls, log level, and rendering. The file was previously called phonegap.xml and was renamed when Adobe/Nitobi donated the PhoneGap codebase to the Apache Software Foundation (ASF) for incubation.
The file includes three settings.
First is:
<access origin>
which specifies an approved list of URLs that can be loaded. These urls are added to the whitelist cache in the DroidGap class. Only URLs on the whitelist can be loaded in the Cordova webview or a new browser instance.
Second is:
<log level>
which specifies log level for debugging on Android . It can be set to ERROR, WARN, INFO, DEBUG or VERBOSE (default=ERROR).
Third is:
<preference name="classicRender" />
which sets the field
private boolean classicRender;
in the DroidGap class. The only reference to what it actually does that I can find is in this commit to Cordova:
if(android.os.Build.VERSION.SDK_INT < 14 && this.classicRender)
{
//This hack fixes legacy PhoneGap apps
//We should be using real pixels, not pretend pixels
...
Perhaps it's more useful to know that it's apparently being removed since it doesn't work properly.
The cordova.xml is parsed in the DroidGap class, in the loadConfiguration() method:
private void loadConfiguration() {
int id = getResources().getIdentifier("cordova", "xml", getPackageName());
...
XmlResourceParser xml = getResources().getXml(id);
etc...
See line 1252 in the DroidGap class for full loadConfiguration() method. All three attributes are parsed but as per above link it appears the classicRender setting doesn't work and can be ignored.