Note
Typically, the value will be the name of the first service in
Typically, the value will be the name of the first service in
services
object array.services.json
file resides in a service’s root directory and describes how the service is constructed and operates.
{
"id" : string,
"description" : string,
"engine" : string,
"executable" : string,
"services": [ : object array,
{
"name" : string,
"description" : string
}
]
}
Property | Required | Type | Description |
---|---|---|---|
id | Required | string | ID of the service array. |
description | Optional | string | Description of the service array. |
engine | Optional | string | Service type. This property is required when you develop a downloadable native service. |
executable | Optional | string | Name of an executable file. This property is required when you develop a downloadable native service. |
services | Required | object array | Services the app provides. Typically, an app provides only one service. However, there may be reasons to provide multiple services within the same app. |
-name | Required | string | Name of service on the webOS Luna Bus. |
-description | Optional | string | Description of the service. |
{
"id": "com.test.testacct.test.service",
"description": "Test Service",
"engine": "native",
"executable": "test_service",
"services": [
{
"name": "com.test.testacct.test.service",
"description": "Test Contact"
}
]
}
Contents