We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de7e57f commit 9f992acCopy full SHA for 9f992ac
app/src/main/java/com/wmods/wppenhacer/xposed/features/general/Others.java
@@ -257,6 +257,15 @@ private void doubleTapReaction() throws Exception {
257
var bubbleMethod = Unobfuscator.loadAntiRevokeBubbleMethod(classLoader);
258
logDebug(Unobfuscator.getMethodDescriptor(bubbleMethod));
259
260
+ XposedBridge.hookAllConstructors(bubbleMethod.getDeclaringClass(), new XC_MethodHook() {
261
+ @Override
262
+ protected void afterHookedMethod(MethodHookParam param) throws Throwable {
263
+ var viewGroup = (ViewGroup) param.thisObject;
264
+ viewGroup.setOnTouchListener(null);
265
+ }
266
+ });
267
+
268
269
XposedBridge.hookMethod(bubbleMethod, new XC_MethodHook() {
270
271
@Override
0 commit comments