Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note

Desk Phone API features described in this section are deprecated and supported only on the following models: D40, d45, d50, d60, d62, d65, d70

This file describes the application and provides specific settings used by the app engine. Every application must include an app.json file in its directory. The app.json file is a single file written in JSON notation. You must use double quotes to identify object keys and values in your app.json file.

...

hidden 
Indicate true if the app should not appear in the Applications screen. If you don't include this, or you indicate false, the app does appear in the Applications Screen.

Example

Code Block
 {
    "name": "helloworld",
    "jsFiles": ["file1.js"],
    "type": "foreground",
    "displayName": "Hello, world!",
    "iconFile"  : "hello_world_icon.png",
    "hidden" : false,
    "hasIdle": true
}