├── .clang-format ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── Clutch.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ └── Clutch.xcscheme ├── Clutch ├── ARM64Dumper.h ├── ARM64Dumper.m ├── ARMDumper.h ├── ARMDumper.m ├── ASLRDisabler.h ├── ASLRDisabler.m ├── Application.h ├── Application.m ├── Binary.h ├── Binary.m ├── BinaryDumpProtocol.h ├── BundleDumpOperation.h ├── BundleDumpOperation.m ├── CMakeLists.txt ├── Clutch-Prefix.pch ├── Clutch.entitlements ├── ClutchBundle.h ├── ClutchBundle.m ├── ClutchCommands.h ├── ClutchCommands.m ├── ClutchPrint.h ├── ClutchPrint.m ├── Device.h ├── Device.m ├── Dumper.h ├── Dumper.m ├── Extension.h ├── Extension.m ├── FBApplicationInfo.h ├── FinalizeDumpOperation.h ├── FinalizeDumpOperation.m ├── Framework.h ├── Framework.m ├── Framework64Dumper.h ├── Framework64Dumper.m ├── FrameworkDumper.h ├── FrameworkDumper.m ├── FrameworkLoader.h ├── FrameworkLoader.m ├── Info.plist ├── Info.plist.in ├── KJApplicationManager.h ├── KJApplicationManager.m ├── MiniZip │ ├── CMakeLists.txt │ ├── crypt.h │ ├── ioapi.c │ ├── ioapi.h │ ├── unzip.c │ ├── unzip.h │ ├── zip.c │ └── zip.h ├── NSBundle+Clutch.h ├── NSBundle+Clutch.m ├── NSData+Reading.h ├── NSData+Reading.m ├── NSFileHandle+Private.h ├── NSFileHandle+Private.m ├── NSTask.h ├── SCInfoBuilder.h ├── SCInfoBuilder.m ├── Stub.storyboard ├── ZipArchive.h ├── ZipArchive.m ├── ZipOperation.h ├── ZipOperation.m ├── mach_vm.h ├── main.m ├── move_and_sign.sh ├── optool-defines.h ├── optool-headers.h ├── optool-headers.m ├── optool-operations.h ├── optool-operations.m ├── optool.h ├── scinfo.h ├── scinfo.m ├── sha1.c └── sha1.h ├── Frameworks ├── AssertionServices.framework │ ├── AssertionServices.tbd │ └── Headers │ │ ├── BKSApplicationStateMonitor.h │ │ ├── BKSProcess.h │ │ ├── BKSProcessAssertion.h │ │ ├── BKSProcessAssertionClient.h │ │ ├── BKSProcessAssertionCreateEvent.h │ │ ├── BKSProcessAssertionCreateResponseEvent.h │ │ ├── BKSProcessAssertionDestroyEvent.h │ │ ├── BKSProcessAssertionEvent.h │ │ └── BKSProcessAssertionUpdateEvent.h ├── AssertionServicesSPI.h ├── BackBoardServices.framework │ ├── BackBoardServices.tbd │ └── Headers │ │ ├── BKSOpenApplicationConstants_Private.h │ │ ├── BKSSystemService.h │ │ ├── BKSSystemService_LaunchServices.h │ │ ├── BKSWatchdogAssertion.h │ │ └── BackBoardServices.h ├── FrontBoardServices.framework │ ├── FrontBoardServices.tbd │ └── Headers │ │ ├── FBSOpenApplicationConstants_Private.h │ │ ├── FBSSystemService.h │ │ ├── FBSSystemService_LaunchServices.h │ │ └── FrontBoardServices.h ├── MobileCoreServices │ ├── LSAppLink.h │ ├── LSApplicationProxy.h │ ├── LSApplicationWorkspace.h │ ├── LSBundleProxy.h │ ├── LSDocumentProxy.h │ ├── LSOpenOperation.h │ ├── LSPlugInKitProxy.h │ ├── LSResourceProxy.h │ ├── NSString+LSAdditions.h │ ├── NSURL+LSAdditions.h │ └── _LSQueryResult.h └── SpringBoardServices.framework │ ├── Headers │ └── SpringBoardServices.h │ └── SpringBoardServices.tbd ├── README.md └── cmake ├── AddFramework.cmake ├── DebugUtils.cmake └── iphoneos.toolchain.cmake /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Clutch.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Clutch.xcodeproj/xcshareddata/xcschemes/Clutch.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch.xcodeproj/xcshareddata/xcschemes/Clutch.xcscheme -------------------------------------------------------------------------------- /Clutch/ARM64Dumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/ARM64Dumper.h -------------------------------------------------------------------------------- /Clutch/ARM64Dumper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/ARM64Dumper.m -------------------------------------------------------------------------------- /Clutch/ARMDumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/ARMDumper.h -------------------------------------------------------------------------------- /Clutch/ARMDumper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/ARMDumper.m -------------------------------------------------------------------------------- /Clutch/ASLRDisabler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/ASLRDisabler.h -------------------------------------------------------------------------------- /Clutch/ASLRDisabler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/ASLRDisabler.m -------------------------------------------------------------------------------- /Clutch/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/Application.h -------------------------------------------------------------------------------- /Clutch/Application.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/Application.m -------------------------------------------------------------------------------- /Clutch/Binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/Binary.h -------------------------------------------------------------------------------- /Clutch/Binary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/Binary.m -------------------------------------------------------------------------------- /Clutch/BinaryDumpProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/BinaryDumpProtocol.h -------------------------------------------------------------------------------- /Clutch/BundleDumpOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/BundleDumpOperation.h -------------------------------------------------------------------------------- /Clutch/BundleDumpOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/BundleDumpOperation.m -------------------------------------------------------------------------------- /Clutch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/CMakeLists.txt -------------------------------------------------------------------------------- /Clutch/Clutch-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/Clutch-Prefix.pch -------------------------------------------------------------------------------- /Clutch/Clutch.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/Clutch.entitlements -------------------------------------------------------------------------------- /Clutch/ClutchBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/ClutchBundle.h -------------------------------------------------------------------------------- /Clutch/ClutchBundle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/ClutchBundle.m -------------------------------------------------------------------------------- /Clutch/ClutchCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/ClutchCommands.h -------------------------------------------------------------------------------- /Clutch/ClutchCommands.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/ClutchCommands.m -------------------------------------------------------------------------------- /Clutch/ClutchPrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/ClutchPrint.h -------------------------------------------------------------------------------- /Clutch/ClutchPrint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/ClutchPrint.m -------------------------------------------------------------------------------- /Clutch/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/Device.h -------------------------------------------------------------------------------- /Clutch/Device.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/Device.m -------------------------------------------------------------------------------- /Clutch/Dumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/Dumper.h -------------------------------------------------------------------------------- /Clutch/Dumper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/Dumper.m -------------------------------------------------------------------------------- /Clutch/Extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/Extension.h -------------------------------------------------------------------------------- /Clutch/Extension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/Extension.m -------------------------------------------------------------------------------- /Clutch/FBApplicationInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/FBApplicationInfo.h -------------------------------------------------------------------------------- /Clutch/FinalizeDumpOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/FinalizeDumpOperation.h -------------------------------------------------------------------------------- /Clutch/FinalizeDumpOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/FinalizeDumpOperation.m -------------------------------------------------------------------------------- /Clutch/Framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/Framework.h -------------------------------------------------------------------------------- /Clutch/Framework.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/Framework.m -------------------------------------------------------------------------------- /Clutch/Framework64Dumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/Framework64Dumper.h -------------------------------------------------------------------------------- /Clutch/Framework64Dumper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/Framework64Dumper.m -------------------------------------------------------------------------------- /Clutch/FrameworkDumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/FrameworkDumper.h -------------------------------------------------------------------------------- /Clutch/FrameworkDumper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/FrameworkDumper.m -------------------------------------------------------------------------------- /Clutch/FrameworkLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/FrameworkLoader.h -------------------------------------------------------------------------------- /Clutch/FrameworkLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/FrameworkLoader.m -------------------------------------------------------------------------------- /Clutch/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/Info.plist -------------------------------------------------------------------------------- /Clutch/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/Info.plist.in -------------------------------------------------------------------------------- /Clutch/KJApplicationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/KJApplicationManager.h -------------------------------------------------------------------------------- /Clutch/KJApplicationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/KJApplicationManager.m -------------------------------------------------------------------------------- /Clutch/MiniZip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/MiniZip/CMakeLists.txt -------------------------------------------------------------------------------- /Clutch/MiniZip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/MiniZip/crypt.h -------------------------------------------------------------------------------- /Clutch/MiniZip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/MiniZip/ioapi.c -------------------------------------------------------------------------------- /Clutch/MiniZip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/MiniZip/ioapi.h -------------------------------------------------------------------------------- /Clutch/MiniZip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/MiniZip/unzip.c -------------------------------------------------------------------------------- /Clutch/MiniZip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/MiniZip/unzip.h -------------------------------------------------------------------------------- /Clutch/MiniZip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/MiniZip/zip.c -------------------------------------------------------------------------------- /Clutch/MiniZip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/MiniZip/zip.h -------------------------------------------------------------------------------- /Clutch/NSBundle+Clutch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/NSBundle+Clutch.h -------------------------------------------------------------------------------- /Clutch/NSBundle+Clutch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/NSBundle+Clutch.m -------------------------------------------------------------------------------- /Clutch/NSData+Reading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/NSData+Reading.h -------------------------------------------------------------------------------- /Clutch/NSData+Reading.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/NSData+Reading.m -------------------------------------------------------------------------------- /Clutch/NSFileHandle+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/NSFileHandle+Private.h -------------------------------------------------------------------------------- /Clutch/NSFileHandle+Private.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/NSFileHandle+Private.m -------------------------------------------------------------------------------- /Clutch/NSTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/NSTask.h -------------------------------------------------------------------------------- /Clutch/SCInfoBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/SCInfoBuilder.h -------------------------------------------------------------------------------- /Clutch/SCInfoBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/SCInfoBuilder.m -------------------------------------------------------------------------------- /Clutch/Stub.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/Stub.storyboard -------------------------------------------------------------------------------- /Clutch/ZipArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/ZipArchive.h -------------------------------------------------------------------------------- /Clutch/ZipArchive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/ZipArchive.m -------------------------------------------------------------------------------- /Clutch/ZipOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/ZipOperation.h -------------------------------------------------------------------------------- /Clutch/ZipOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/ZipOperation.m -------------------------------------------------------------------------------- /Clutch/mach_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/mach_vm.h -------------------------------------------------------------------------------- /Clutch/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/main.m -------------------------------------------------------------------------------- /Clutch/move_and_sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/move_and_sign.sh -------------------------------------------------------------------------------- /Clutch/optool-defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/optool-defines.h -------------------------------------------------------------------------------- /Clutch/optool-headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/optool-headers.h -------------------------------------------------------------------------------- /Clutch/optool-headers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/optool-headers.m -------------------------------------------------------------------------------- /Clutch/optool-operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/optool-operations.h -------------------------------------------------------------------------------- /Clutch/optool-operations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/optool-operations.m -------------------------------------------------------------------------------- /Clutch/optool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/optool.h -------------------------------------------------------------------------------- /Clutch/scinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/scinfo.h -------------------------------------------------------------------------------- /Clutch/scinfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/scinfo.m -------------------------------------------------------------------------------- /Clutch/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/sha1.c -------------------------------------------------------------------------------- /Clutch/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Clutch/sha1.h -------------------------------------------------------------------------------- /Frameworks/AssertionServices.framework/AssertionServices.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/AssertionServices.framework/AssertionServices.tbd -------------------------------------------------------------------------------- /Frameworks/AssertionServices.framework/Headers/BKSApplicationStateMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/AssertionServices.framework/Headers/BKSApplicationStateMonitor.h -------------------------------------------------------------------------------- /Frameworks/AssertionServices.framework/Headers/BKSProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/AssertionServices.framework/Headers/BKSProcess.h -------------------------------------------------------------------------------- /Frameworks/AssertionServices.framework/Headers/BKSProcessAssertion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/AssertionServices.framework/Headers/BKSProcessAssertion.h -------------------------------------------------------------------------------- /Frameworks/AssertionServices.framework/Headers/BKSProcessAssertionClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/AssertionServices.framework/Headers/BKSProcessAssertionClient.h -------------------------------------------------------------------------------- /Frameworks/AssertionServices.framework/Headers/BKSProcessAssertionCreateEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/AssertionServices.framework/Headers/BKSProcessAssertionCreateEvent.h -------------------------------------------------------------------------------- /Frameworks/AssertionServices.framework/Headers/BKSProcessAssertionCreateResponseEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/AssertionServices.framework/Headers/BKSProcessAssertionCreateResponseEvent.h -------------------------------------------------------------------------------- /Frameworks/AssertionServices.framework/Headers/BKSProcessAssertionDestroyEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/AssertionServices.framework/Headers/BKSProcessAssertionDestroyEvent.h -------------------------------------------------------------------------------- /Frameworks/AssertionServices.framework/Headers/BKSProcessAssertionEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/AssertionServices.framework/Headers/BKSProcessAssertionEvent.h -------------------------------------------------------------------------------- /Frameworks/AssertionServices.framework/Headers/BKSProcessAssertionUpdateEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/AssertionServices.framework/Headers/BKSProcessAssertionUpdateEvent.h -------------------------------------------------------------------------------- /Frameworks/AssertionServicesSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/AssertionServicesSPI.h -------------------------------------------------------------------------------- /Frameworks/BackBoardServices.framework/BackBoardServices.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/BackBoardServices.framework/BackBoardServices.tbd -------------------------------------------------------------------------------- /Frameworks/BackBoardServices.framework/Headers/BKSOpenApplicationConstants_Private.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frameworks/BackBoardServices.framework/Headers/BKSSystemService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/BackBoardServices.framework/Headers/BKSSystemService.h -------------------------------------------------------------------------------- /Frameworks/BackBoardServices.framework/Headers/BKSSystemService_LaunchServices.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frameworks/BackBoardServices.framework/Headers/BKSWatchdogAssertion.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frameworks/BackBoardServices.framework/Headers/BackBoardServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/BackBoardServices.framework/Headers/BackBoardServices.h -------------------------------------------------------------------------------- /Frameworks/FrontBoardServices.framework/FrontBoardServices.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/FrontBoardServices.framework/FrontBoardServices.tbd -------------------------------------------------------------------------------- /Frameworks/FrontBoardServices.framework/Headers/FBSOpenApplicationConstants_Private.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frameworks/FrontBoardServices.framework/Headers/FBSSystemService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/FrontBoardServices.framework/Headers/FBSSystemService.h -------------------------------------------------------------------------------- /Frameworks/FrontBoardServices.framework/Headers/FBSSystemService_LaunchServices.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frameworks/FrontBoardServices.framework/Headers/FrontBoardServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/FrontBoardServices.framework/Headers/FrontBoardServices.h -------------------------------------------------------------------------------- /Frameworks/MobileCoreServices/LSAppLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/MobileCoreServices/LSAppLink.h -------------------------------------------------------------------------------- /Frameworks/MobileCoreServices/LSApplicationProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/MobileCoreServices/LSApplicationProxy.h -------------------------------------------------------------------------------- /Frameworks/MobileCoreServices/LSApplicationWorkspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/MobileCoreServices/LSApplicationWorkspace.h -------------------------------------------------------------------------------- /Frameworks/MobileCoreServices/LSBundleProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/MobileCoreServices/LSBundleProxy.h -------------------------------------------------------------------------------- /Frameworks/MobileCoreServices/LSDocumentProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/MobileCoreServices/LSDocumentProxy.h -------------------------------------------------------------------------------- /Frameworks/MobileCoreServices/LSOpenOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/MobileCoreServices/LSOpenOperation.h -------------------------------------------------------------------------------- /Frameworks/MobileCoreServices/LSPlugInKitProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/MobileCoreServices/LSPlugInKitProxy.h -------------------------------------------------------------------------------- /Frameworks/MobileCoreServices/LSResourceProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/MobileCoreServices/LSResourceProxy.h -------------------------------------------------------------------------------- /Frameworks/MobileCoreServices/NSString+LSAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/MobileCoreServices/NSString+LSAdditions.h -------------------------------------------------------------------------------- /Frameworks/MobileCoreServices/NSURL+LSAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/MobileCoreServices/NSURL+LSAdditions.h -------------------------------------------------------------------------------- /Frameworks/MobileCoreServices/_LSQueryResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/MobileCoreServices/_LSQueryResult.h -------------------------------------------------------------------------------- /Frameworks/SpringBoardServices.framework/Headers/SpringBoardServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/SpringBoardServices.framework/Headers/SpringBoardServices.h -------------------------------------------------------------------------------- /Frameworks/SpringBoardServices.framework/SpringBoardServices.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/Frameworks/SpringBoardServices.framework/SpringBoardServices.tbd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/README.md -------------------------------------------------------------------------------- /cmake/AddFramework.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/cmake/AddFramework.cmake -------------------------------------------------------------------------------- /cmake/DebugUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/cmake/DebugUtils.cmake -------------------------------------------------------------------------------- /cmake/iphoneos.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/Clutch/HEAD/cmake/iphoneos.toolchain.cmake --------------------------------------------------------------------------------