INNER CODE UNIT · Java
isDebug
mmin18/RealtimeBlurView · library/src-blurimpl/SupportLibraryBlurImpl.java:72
static boolean isDebug(Context ctx) {
if (DEBUG == null && ctx != null) {
DEBUG = (ctx.getApplicationInfo().flags & ApplicationInfo.FLAG_DEBUGGABLE) != 0;
}
return DEBUG == Boolean.TRUE;
}
}