Disable Xposed check

This commit is contained in:
M66B 2018-02-08 17:27:23 +01:00
parent 42741181b3
commit a5910a6a41
1 changed files with 1 additions and 1 deletions

View File

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