Wenn ich ein Plugin zur Datei config.xml hinzufüge und mein Projekt hochlade, scheint die Konfiguration fehlerhaft zu sein.Phonegap Build Config.xml Fehlerhaft
<?xml version='1.0' encoding='utf-8'?>
<widget
id="com.example.app"
version="0.0.1"
xmlns="http://www.w3.org/ns/widgets"
xmlns:cdv="http://cordova.apache.org/ns/1.0"
>
<name>App</name>
<description>
A sample Apache Cordova application that responds to the deviceready event.
</description>
<author email="[email protected]" href="http://cordova.io">
Me
</author>
<content src="index.html" />
<access origin="*" />
<preference name="phonegap-version" value="3.0.0" />
<gap:plugin name="org.apache.cordova.file" />
</widget>
Die phonegap instructions mir zu sagen, diese Zeile in meinem config.xml hinzu:
<gap:plugin name="org.apache.cordova.file" />
Jedesmal, wenn ich versuche, es zu laden, es malformed wird.
erstellt es korrekt ohne das Plugin? – QuickFix