1
0
Fork 0
mirror of https://github.com/M66B/NetGuard.git synced 2024-12-26 01:38:07 +00:00

Disable Xposed check

This commit is contained in:
M66B 2018-02-08 17:27:23 +01:00
parent 42741181b3
commit a5910a6a41

View file

@ -429,7 +429,7 @@ public class Util {
} }
public static boolean hasXposed(Context context) { public static boolean hasXposed(Context context) {
if (!isPlayStoreInstall(context)) if (true || !isPlayStoreInstall(context))
return false; return false;
for (StackTraceElement ste : Thread.currentThread().getStackTrace()) for (StackTraceElement ste : Thread.currentThread().getStackTrace())
if (ste.getClassName().startsWith("de.robv.android.xposed")) if (ste.getClassName().startsWith("de.robv.android.xposed"))