Skip to content

Commit

Permalink
Update RemoveAds.java
Browse files Browse the repository at this point in the history
検出を厳密に
  • Loading branch information
areteruhiro authored Sep 28, 2024
1 parent a309123 commit 050f9ff
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ protected void afterHookedMethod(MethodHookParam param) throws Throwable {
String className = view.getClass().getName();


if (className.contains("Ad") || className.contains("ad")) {
XposedBridge.log("Detected Ad View: " + className);
if (className.contains("Ad") ) {



if (!adClassNames.contains(className)) {
Expand Down

0 comments on commit 050f9ff

Please sign in to comment.