The Mobile Application Builder for Zimbra Community 8 supports defining supplementary files for use in global javascript and stylesheets.
Each supplementary file is defined using a <embeddedFile /> node in a configuration file installed with the server components of the Mobile Application Builder.
Definition Format
<embeddedFile name="..." type="..." base64="...">
<![CDATA[
Content of the file
]]>
</javaScript>
<embeddedFile>
Represents a supplementary file that can be used by javascript and stylesheets. The content of the node is the content of the file.
name
The name of the file. This file can be used within global javascript and global stylesheets to reference this file by URL.
type
The MIME type of the file. This will be used by the Mobile Application Builder when serving the file.
base64
Set to true to identify that the content of the embeddedFile is Base 64 encoded (for example, to represent binary file content). If the content of the embeddedFile is plain text, set to false.