I would like to add in "worklightServerRootURL" element on application-descriptor.xml to point to the external Worklight Server but i got the error "Invalid content was found starting with element 'worklightServerRootURL'". Please refer below for my configuration on application-descriptor.xml. Anyone know the solution about this error?
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<application xmlns="http://www.worklight.com/application-descriptor" id="MobileTest" platformVersion="6.2.0.00.20140825-1637">
<displayName>MobileTest</displayName>
<description>MobileTest</description>
<author>
<name>application's author</name>
<email>application author's e-mail</email>
<homepage>http://mycompany.com</homepage>
<copyright>Copyright My Company</copyright>
</author>
<mainFile>index.html</mainFile>
<features/>
<thumbnailImage>common/images/thumbnail.png</thumbnailImage>
<android version="1.0">
<worklightSettings include="false"/>
<security>
<encryptWebResources enabled="false"/>
<testWebResourcesChecksum enabled="false" ignoreFileExtensions="png, jpg, jpeg, gif, mp4, mp3"/>
<publicSigningKey/>
<packageName/>
</security>
</android>
<worklightServerRootURL>http://${local.IPAddress}:9080/worklight</worklightServerRootURL>
</application>
Thank you.