├── .gitignore ├── LICENSE ├── MJAppTools.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── MJAppTools ├── Default-568h@2x.png ├── Extensions │ ├── NSFileHandle+Extension.h │ └── NSFileHandle+Extension.m ├── Info.plist ├── Models │ ├── MJApp.h │ ├── MJApp.m │ ├── MJMachO.h │ └── MJMachO.m ├── SystemHeaders │ ├── FBApplicationInfo.h │ ├── FBBundleInfo.h │ ├── LSApplicationProxy.h │ └── LSApplicationWorkspace.h ├── Tools │ ├── MJAppTools.h │ ├── MJAppTools.m │ ├── MJPrintTools.h │ └── MJPrintTools.m └── main.m ├── Makefile ├── README.md └── Release └── MJAppTools.entitlements /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderMJLee/MJAppTools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderMJLee/MJAppTools/HEAD/LICENSE -------------------------------------------------------------------------------- /MJAppTools.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderMJLee/MJAppTools/HEAD/MJAppTools.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MJAppTools.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderMJLee/MJAppTools/HEAD/MJAppTools.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MJAppTools/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderMJLee/MJAppTools/HEAD/MJAppTools/Default-568h@2x.png -------------------------------------------------------------------------------- /MJAppTools/Extensions/NSFileHandle+Extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderMJLee/MJAppTools/HEAD/MJAppTools/Extensions/NSFileHandle+Extension.h -------------------------------------------------------------------------------- /MJAppTools/Extensions/NSFileHandle+Extension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderMJLee/MJAppTools/HEAD/MJAppTools/Extensions/NSFileHandle+Extension.m -------------------------------------------------------------------------------- /MJAppTools/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderMJLee/MJAppTools/HEAD/MJAppTools/Info.plist -------------------------------------------------------------------------------- /MJAppTools/Models/MJApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderMJLee/MJAppTools/HEAD/MJAppTools/Models/MJApp.h -------------------------------------------------------------------------------- /MJAppTools/Models/MJApp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderMJLee/MJAppTools/HEAD/MJAppTools/Models/MJApp.m -------------------------------------------------------------------------------- /MJAppTools/Models/MJMachO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderMJLee/MJAppTools/HEAD/MJAppTools/Models/MJMachO.h -------------------------------------------------------------------------------- /MJAppTools/Models/MJMachO.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderMJLee/MJAppTools/HEAD/MJAppTools/Models/MJMachO.m -------------------------------------------------------------------------------- /MJAppTools/SystemHeaders/FBApplicationInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderMJLee/MJAppTools/HEAD/MJAppTools/SystemHeaders/FBApplicationInfo.h -------------------------------------------------------------------------------- /MJAppTools/SystemHeaders/FBBundleInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderMJLee/MJAppTools/HEAD/MJAppTools/SystemHeaders/FBBundleInfo.h -------------------------------------------------------------------------------- /MJAppTools/SystemHeaders/LSApplicationProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderMJLee/MJAppTools/HEAD/MJAppTools/SystemHeaders/LSApplicationProxy.h -------------------------------------------------------------------------------- /MJAppTools/SystemHeaders/LSApplicationWorkspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderMJLee/MJAppTools/HEAD/MJAppTools/SystemHeaders/LSApplicationWorkspace.h -------------------------------------------------------------------------------- /MJAppTools/Tools/MJAppTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderMJLee/MJAppTools/HEAD/MJAppTools/Tools/MJAppTools.h -------------------------------------------------------------------------------- /MJAppTools/Tools/MJAppTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderMJLee/MJAppTools/HEAD/MJAppTools/Tools/MJAppTools.m -------------------------------------------------------------------------------- /MJAppTools/Tools/MJPrintTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderMJLee/MJAppTools/HEAD/MJAppTools/Tools/MJPrintTools.h -------------------------------------------------------------------------------- /MJAppTools/Tools/MJPrintTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderMJLee/MJAppTools/HEAD/MJAppTools/Tools/MJPrintTools.m -------------------------------------------------------------------------------- /MJAppTools/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderMJLee/MJAppTools/HEAD/MJAppTools/main.m -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderMJLee/MJAppTools/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderMJLee/MJAppTools/HEAD/README.md -------------------------------------------------------------------------------- /Release/MJAppTools.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderMJLee/MJAppTools/HEAD/Release/MJAppTools.entitlements --------------------------------------------------------------------------------