Is there a reason why only XML files with the extensions .xml, .appxmanifest and .storyboard can be modified using the "config-file" element in the config.xml? I would like to modify the .jsproj, but it fails as it is trying to parse the file as a "plist" file.
|
if (ext === '.xml' || ext === '.appxmanifest' || ext === '.storyboard') { |
Is there a reason why only XML files with the extensions .xml, .appxmanifest and .storyboard can be modified using the "config-file" element in the config.xml? I would like to modify the .jsproj, but it fails as it is trying to parse the file as a "plist" file.
cordova-common/src/ConfigChanges/ConfigFile.js
Line 74 in 193c9f3