Checks if the app is currently debugging.
app.IsDebugging() → Boolean
See also SetDebug, Debug
Example - Check Debugging
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:" )