1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
| // See http://iphonedevwiki.net/index.php/Logos
#import <UIKit/UIKit.h>
//常用广告去除(谷歌,IronSource,UnityAd,Mintegral)
%hook GADInterstitial
- (void)presentFromRootViewController:(UIViewController *)rootViewController { NSLog(@"谷歌插屏广告去除广告去除"); }
%end
%hook IronSource
+ (void)showRewardedVideoWithViewController:(UIViewController *)viewController{ NSLog(@"IronSource广告去除"); SEL selector = NSSelectorFromString(@"rewardedVideoDidEnd"); if ([viewController respondsToSelector:selector]){ [viewController performSelectorOnMainThread:selector withObject:nil waitUntilDone:NO]; } }
%end
%hook UnityAds + (void)show:(id)arg1 placementId:(id)arg2 {
} + (void)show:(id)arg1 { NSLog(@"IronSource广告去除"); } + (void)load:(id)arg1 {
} %end
%hook OMIDMintegralSDK + (id)sharedInstance{ return nil; } - (_Bool)activate{ return NO; }
%end
|