pluginname_appinfo.json

Plug-ins require an additional configuration file called pluginname_appinfo.json, where pluginname is the name of the plug-in. So, taking the shapespin plug-in sample as an example, the name of the file would be shapespin_plugin_appinfo.json.

Schema

{
    requiredMemory : number,
    type           : string
}

Properties

Property Required Type Description
requiredMemory Yes number The maximum plug-in memory usage in megabytes.
type Yes string Identifies the type of application. For a plug-in, set to "hybrid".

Example

{
    "type": "hybrid",
    "requiredMemory": 20
}