This site permanently moved to
https://droidscript.github.io
. Please update links accordingly.
You are being forwarded automatically in 3...
[stay here]
Back
IsAPK
Hello World
Returns whether current app is an APK or not (case not it's a DroidScript Project).
app.IsAPK() →
Boolean
Example - Check APK
click to expand contents
function
OnStart
(
)
{
var
isAPK
=
app
.
IsAPK
(
)
;
app
.
Alert
(
isAPK
,
"is APK:"
)
;
}
Copy
Copy All
Run
loading