List of usage examples for android.os Debug waitingForDebugger
public static boolean waitingForDebugger()
From source file:Main.java
public static boolean isDebuggerAttached() { return (Debug.isDebuggerConnected()) || (Debug.waitingForDebugger()); }
From source file:Main.java
public static boolean isDebuggerAttached() { return (Debug.isDebuggerConnected() || Debug.waitingForDebugger()) ? true : CLS_TRACE_DEFAULT; }