(Context context)
| 454 | } |
| 455 | |
| 456 | public static boolean hasXposed(Context context) { |
| 457 | if (true || !isPlayStoreInstall(context)) |
| 458 | return false; |
| 459 | for (StackTraceElement ste : Thread.currentThread().getStackTrace()) |
| 460 | if (ste.getClassName().startsWith("de.robv.android.xposed")) |
| 461 | return true; |
| 462 | return false; |
| 463 | } |
| 464 | |
| 465 | public static boolean ownFault(Context context, Throwable ex) { |
| 466 | if (ex instanceof OutOfMemoryError) |
no test coverage detected