From 95962a8a9aad034f4502dacc7b188c034ca4adfd Mon Sep 17 00:00:00 2001 From: Editor Lionbridge Date: Tue, 29 Aug 2017 13:35:42 +0300 Subject: [PATCH] Edit the note on the service app support This is a manual cherry pick of lines #146483 and #146495 in the tizen_3.0 branch. Change-Id: I42084b126317a6b1f4114328cc67c4a8ec473ff4 --- org.tizen.guides/html/web/app_management/service_app_w.htm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/org.tizen.guides/html/web/app_management/service_app_w.htm b/org.tizen.guides/html/web/app_management/service_app_w.htm index add2aea..a0e2efa 100644 --- a/org.tizen.guides/html/web/app_management/service_app_w.htm +++ b/org.tizen.guides/html/web/app_management/service_app_w.htm @@ -46,7 +46,10 @@

A service application is a type of Tizen Web application that provides an environment for running JavaScript in the background without a graphical user interface (the application follows the ECMA-262 specification). The service application is used to perform tasks which need to run periodically or continuously but do not require user interaction. For example, a service application can be used for getting data or listening for platform events in the background. As service applications do not have UI components, they run on top of a more light-weight runtime than UI applications. Therefore, you can expect them to perform better and consume less memory.

-

This feature is supported in wearable applications only. The Web service application is an optional feature, which means that it may not be supported on all wearable devices.

+
+ Note + This feature is supported in wearable applications only. The Web service application is an optional feature, which means that it may not be supported on all wearable devices. You can check the device capability by using the getCapability() method of the SystemInfo interface. For more information, see Application Filtering. +

The main features of the service application include:

-- 2.7.4