This site permanently moved to
https://droidscript.github.io
. Please update links accordingly.
You are being forwarded automatically in 3...
[stay here]
Back
IsService
Hello World
Checks if the currently running app instance is a service.
app.IsService() →
Boolean
Example - Check if App is Service
click to expand contents
function
OnStart
(
)
{
var
isSvc
=
app
.
IsService
(
)
;
app
.
Alert
(
isSvc
,
"IsService"
)
;
}
Copy
Copy All
Run
loading