Skip to content

keep any app running in background for iOS 13 - 13.3.1 device has jailbreaked

License

Notifications You must be signed in to change notification settings

SilverFruity/WatchDogger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WatchDogger

Core

Add 'Executables -> runningboardd' in plist

remember 'killall runningboardd'

// please include RBProcess.h and RBSProcessIdentity.h. the project has inlcude those files.
%hook RBProcess
- (void)_lock_suspend{
  if ([self.identity.embeddedApplicationIdentifier isEqualToString:@"your bundleId"]) {
    return;
  }
  %orig;
}
- (void)_lock_resume{
	%orig;
}
- (_Bool)_lock_terminateWithContext:(id)arg1{
	return %orig;
}
%end

Preview

Setting

About

keep any app running in background for iOS 13 - 13.3.1 device has jailbreaked

Resources

License

Stars

Watchers

Forks

Packages

No packages published