This site permanently moved to
https://droidscript.github.io
. Please update links accordingly.
You are being forwarded automatically in 3...
[stay here]
Back
IsDebugging
JS
Py
Hello World
Checks if the app is currently debugging.
app.IsDebugging() →
Boolean
See also
SetDebug
,
Debug
Example - Check Debugging
click to expand contents
function
OnStart
(
)
{
var
isDbg
=
app
.
IsDebugging
(
)
;
app
.
Alert
(
isDbg
,
"now debugging:"
)
;
}
from
native
import
app
def
OnStart
(
)
:
isDbg
=
app
.
IsDebugging
(
)
app
.
Alert
(
isDbg
,
"now debugging:"
)
Copy
Copy All
Run
loading