cordova - phonegap build config.xml not working -


newish phonegap , trying make sense of existing cordova/phonegap project. bit im stuck @ existing config.xml of project below:

i have no idea how works not standard config.xml. appreciated. when build project plugins not included, namely softkeyboard plugin. default config.xml appears used instead.

<?xml version="1.0" encoding="utf-8"?> <cordova> <!-- access elements control android whitelist. domains assumed blocked unless set otherwise  -->  <access origin="http://127.0.0.1*"/> <!-- allow local pages --> <access origin="*" subdomains="true" />  <log level="debug"/> <preference name="usebrowserhistory" value="true" /> <preference name="exit-on-suspend" value="true" /> <preference name="disallowoverscroll" value="true" /> <preference name="loadurltimeoutvalue" value="60000" />  <plugins>     <plugin name="app" value="org.apache.cordova.app"/>     <plugin name="device" value="org.apache.cordova.device"/>     <plugin name="camera" value="org.apache.cordova.cameralauncher"/>         <plugin name="file" value="org.apache.cordova.fileutils"/>     <plugin name="networkstatus" value="org.apache.cordova.networkmanager"/>     <plugin name="notification" value="org.apache.cordova.notification"/>     <plugin name="storage" value="org.apache.cordova.storage"/>     <plugin name="capture" value="org.apache.cordova.capture"/>     <plugin name="splashscreen" value="org.apache.cordova.splashscreen"/>     <plugin name="echo" value="org.apache.cordova.echo" />     <plugin name="globalization" value="org.apache.cordova.globalization"/>      <plugin name="softkeyboard" value="com.webdevs.softkeyboard" /> </plugins> </cordova> 

please consider hello world application config.xml. believe can consider standard config.xml , must reside @ root. [along index.html]

 <?xml version="1.0" encoding="utf-8"?>  <widget xmlns     = "http://www.w3.org/ns/widgets"     xmlns:gap = "http://phonegap.com/ns/1.0"     id        = "com.phonegap.helloworld"     version   = "1.0.0">   <name>helloworld</name>   <description>     hello world sample application responds deviceready event.  </description>   <author href="http://phonegap.com" email="support@phonegap.com">     phonegap team  </author>   <access origin="*" />  </widget> 

refer link


Comments

Popular posts from this blog

database - VFP Grid + SQL server 2008 - grid not showing correctly -

jquery - Set jPicker field to empty value -

.htaccess - htaccess convert request to clean url and add slash at the end of the url -