Permalink
Switch branches/tags
Nothing to show
Find file Copy path
0750e07 Jun 29, 2018
22 lines (14 sloc) 477 Bytes
%hook SBIconController
// 8
-(void)showDeveloperBuildExpirationAlertIfNecessary {}
// 9+10
- (void)showDeveloperBuildExpirationAlertIfNecessaryFromLockscreen:(_Bool)arg1 toLauncher:(_Bool)arg2 {}
%end
// 11
%hook SBDeveloperBuildExpirationTrigger
- (void)showDeveloperBuildExpirationAlertIfNecessaryFromLockscreen:(_Bool)arg1 toLauncher:(_Bool)arg2 {}
%end
// might help
%hook SBLockdownManager
- (id)developerBuildExpirationDate { return [NSDate distantFuture]; }
%end