├── .gitignore ├── Makefile ├── README.md ├── README_CN.md ├── Resources ├── Info.plist ├── Root.plist ├── XcodeRootDebugIcon@2x.png └── XcodeRootDebugIcon@3x.png ├── ScreenShots ├── 20220627_235849.png └── 20220628_000606_898.png ├── Tweak.x ├── XRDRootListController.h ├── XRDRootListController.m ├── XcodeRootDebug.plist ├── debugserver.entitlements └── layout ├── DEBIAN ├── control ├── postinst └── postrm └── Library └── PreferenceLoader └── Preferences └── XcodeRootDebug.plist /.gitignore: -------------------------------------------------------------------------------- 1 | packages 2 | .theos 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon4ex/XcodeRootDebug/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon4ex/XcodeRootDebug/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon4ex/XcodeRootDebug/HEAD/README_CN.md -------------------------------------------------------------------------------- /Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon4ex/XcodeRootDebug/HEAD/Resources/Info.plist -------------------------------------------------------------------------------- /Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon4ex/XcodeRootDebug/HEAD/Resources/Root.plist -------------------------------------------------------------------------------- /Resources/XcodeRootDebugIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon4ex/XcodeRootDebug/HEAD/Resources/XcodeRootDebugIcon@2x.png -------------------------------------------------------------------------------- /Resources/XcodeRootDebugIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon4ex/XcodeRootDebug/HEAD/Resources/XcodeRootDebugIcon@3x.png -------------------------------------------------------------------------------- /ScreenShots/20220627_235849.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon4ex/XcodeRootDebug/HEAD/ScreenShots/20220627_235849.png -------------------------------------------------------------------------------- /ScreenShots/20220628_000606_898.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon4ex/XcodeRootDebug/HEAD/ScreenShots/20220628_000606_898.png -------------------------------------------------------------------------------- /Tweak.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon4ex/XcodeRootDebug/HEAD/Tweak.x -------------------------------------------------------------------------------- /XRDRootListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon4ex/XcodeRootDebug/HEAD/XRDRootListController.h -------------------------------------------------------------------------------- /XRDRootListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon4ex/XcodeRootDebug/HEAD/XRDRootListController.m -------------------------------------------------------------------------------- /XcodeRootDebug.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon4ex/XcodeRootDebug/HEAD/XcodeRootDebug.plist -------------------------------------------------------------------------------- /debugserver.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon4ex/XcodeRootDebug/HEAD/debugserver.entitlements -------------------------------------------------------------------------------- /layout/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon4ex/XcodeRootDebug/HEAD/layout/DEBIAN/control -------------------------------------------------------------------------------- /layout/DEBIAN/postinst: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | killall -9 lockdownd >/dev/null 2>&1 4 | 5 | exit 0 6 | -------------------------------------------------------------------------------- /layout/DEBIAN/postrm: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | killall -9 lockdownd >/dev/null 2>&1 4 | 5 | exit 0 6 | -------------------------------------------------------------------------------- /layout/Library/PreferenceLoader/Preferences/XcodeRootDebug.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemon4ex/XcodeRootDebug/HEAD/layout/Library/PreferenceLoader/Preferences/XcodeRootDebug.plist --------------------------------------------------------------------------------