├── GYMonitor.podspec ├── GYMonitor ├── CrashReporter.framework │ ├── CrashReporter │ ├── Headers │ ├── Resources │ └── Versions │ │ ├── A │ │ ├── CrashReporter │ │ ├── Headers │ │ │ ├── CrashReporter.h │ │ │ ├── PLCrashAsyncSignalInfo.h │ │ │ ├── PLCrashFeatureConfig.h │ │ │ ├── PLCrashNamespace.h │ │ │ ├── PLCrashReport.h │ │ │ ├── PLCrashReportApplicationInfo.h │ │ │ ├── PLCrashReportBinaryImageInfo.h │ │ │ ├── PLCrashReportExceptionInfo.h │ │ │ ├── PLCrashReportFormatter.h │ │ │ ├── PLCrashReportMachExceptionInfo.h │ │ │ ├── PLCrashReportMachineInfo.h │ │ │ ├── PLCrashReportProcessInfo.h │ │ │ ├── PLCrashReportProcessorInfo.h │ │ │ ├── PLCrashReportRegisterInfo.h │ │ │ ├── PLCrashReportSignalInfo.h │ │ │ ├── PLCrashReportStackFrameInfo.h │ │ │ ├── PLCrashReportSymbolInfo.h │ │ │ ├── PLCrashReportSystemInfo.h │ │ │ ├── PLCrashReportTextFormatter.h │ │ │ ├── PLCrashReportThreadInfo.h │ │ │ ├── PLCrashReporter.h │ │ │ ├── PLCrashReporterConfig.h │ │ │ └── PLRDMCrashReport.h │ │ └── Resources │ │ │ └── Info.plist │ │ └── Current ├── FPS │ ├── GYFPSMonitor.h │ └── GYFPSMonitor.m ├── GYMonitor.h ├── GYMonitor.m ├── GYMonitorDataCenter.h ├── GYMonitorDataCenter.m └── Utils │ ├── GYFilePreviewViewController.h │ ├── GYFilePreviewViewController.m │ ├── GYFileWalker.h │ ├── GYFileWalker.m │ ├── GYFilesViewController.h │ ├── GYFilesViewController.m │ ├── GYIndicatorWindow.h │ ├── GYIndicatorWindow.m │ ├── GYMonitorIndicator.h │ ├── GYMonitorIndicator.m │ ├── GYMonitorUtils.h │ ├── GYMonitorUtils.m │ ├── GYReportManager.h │ └── GYReportManager.m ├── GYMonitorExample.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── towerfeng.xcuserdatad │ └── xcschemes │ ├── GYMonitorExample.xcscheme │ └── xcschememanagement.plist ├── GYMonitorExample ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── LaunchImage.launchimage │ │ ├── Contents.json │ │ └── Default-568h@2x.png ├── GYRootViewController.h ├── GYRootViewController.m ├── Info.plist ├── Screenshots │ ├── run_script.jpg │ ├── slow.png │ ├── stack_mac.jpg │ ├── stack_sim.png │ ├── stuck.png │ ├── sym_ret.jpg │ └── symblic.jpg ├── main.m └── rose_PNG642.png ├── LICENSE ├── Launch Screen.storyboard ├── README.md └── dsymInfo ├── backup.py └── 反解堆栈.workflow └── Contents ├── Info.plist ├── QuickLook └── Preview.png └── document.wflow /GYMonitor.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor.podspec -------------------------------------------------------------------------------- /GYMonitor/CrashReporter.framework/CrashReporter: -------------------------------------------------------------------------------- 1 | Versions/Current/CrashReporter -------------------------------------------------------------------------------- /GYMonitor/CrashReporter.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /GYMonitor/CrashReporter.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /GYMonitor/CrashReporter.framework/Versions/A/CrashReporter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/CrashReporter.framework/Versions/A/CrashReporter -------------------------------------------------------------------------------- /GYMonitor/CrashReporter.framework/Versions/A/Headers/CrashReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/CrashReporter.framework/Versions/A/Headers/CrashReporter.h -------------------------------------------------------------------------------- /GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashAsyncSignalInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashAsyncSignalInfo.h -------------------------------------------------------------------------------- /GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashFeatureConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashFeatureConfig.h -------------------------------------------------------------------------------- /GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashNamespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashNamespace.h -------------------------------------------------------------------------------- /GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReport.h -------------------------------------------------------------------------------- /GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportApplicationInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportApplicationInfo.h -------------------------------------------------------------------------------- /GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportBinaryImageInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportBinaryImageInfo.h -------------------------------------------------------------------------------- /GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportExceptionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportExceptionInfo.h -------------------------------------------------------------------------------- /GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportFormatter.h -------------------------------------------------------------------------------- /GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportMachExceptionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportMachExceptionInfo.h -------------------------------------------------------------------------------- /GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportMachineInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportMachineInfo.h -------------------------------------------------------------------------------- /GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportProcessInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportProcessInfo.h -------------------------------------------------------------------------------- /GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportProcessorInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportProcessorInfo.h -------------------------------------------------------------------------------- /GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportRegisterInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportRegisterInfo.h -------------------------------------------------------------------------------- /GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportSignalInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportSignalInfo.h -------------------------------------------------------------------------------- /GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportStackFrameInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportStackFrameInfo.h -------------------------------------------------------------------------------- /GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportSymbolInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportSymbolInfo.h -------------------------------------------------------------------------------- /GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportSystemInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportSystemInfo.h -------------------------------------------------------------------------------- /GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportTextFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportTextFormatter.h -------------------------------------------------------------------------------- /GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportThreadInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReportThreadInfo.h -------------------------------------------------------------------------------- /GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReporter.h -------------------------------------------------------------------------------- /GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReporterConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/CrashReporter.framework/Versions/A/Headers/PLCrashReporterConfig.h -------------------------------------------------------------------------------- /GYMonitor/CrashReporter.framework/Versions/A/Headers/PLRDMCrashReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/CrashReporter.framework/Versions/A/Headers/PLRDMCrashReport.h -------------------------------------------------------------------------------- /GYMonitor/CrashReporter.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/CrashReporter.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /GYMonitor/CrashReporter.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /GYMonitor/FPS/GYFPSMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/FPS/GYFPSMonitor.h -------------------------------------------------------------------------------- /GYMonitor/FPS/GYFPSMonitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/FPS/GYFPSMonitor.m -------------------------------------------------------------------------------- /GYMonitor/GYMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/GYMonitor.h -------------------------------------------------------------------------------- /GYMonitor/GYMonitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/GYMonitor.m -------------------------------------------------------------------------------- /GYMonitor/GYMonitorDataCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/GYMonitorDataCenter.h -------------------------------------------------------------------------------- /GYMonitor/GYMonitorDataCenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/GYMonitorDataCenter.m -------------------------------------------------------------------------------- /GYMonitor/Utils/GYFilePreviewViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/Utils/GYFilePreviewViewController.h -------------------------------------------------------------------------------- /GYMonitor/Utils/GYFilePreviewViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/Utils/GYFilePreviewViewController.m -------------------------------------------------------------------------------- /GYMonitor/Utils/GYFileWalker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/Utils/GYFileWalker.h -------------------------------------------------------------------------------- /GYMonitor/Utils/GYFileWalker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/Utils/GYFileWalker.m -------------------------------------------------------------------------------- /GYMonitor/Utils/GYFilesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/Utils/GYFilesViewController.h -------------------------------------------------------------------------------- /GYMonitor/Utils/GYFilesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/Utils/GYFilesViewController.m -------------------------------------------------------------------------------- /GYMonitor/Utils/GYIndicatorWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/Utils/GYIndicatorWindow.h -------------------------------------------------------------------------------- /GYMonitor/Utils/GYIndicatorWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/Utils/GYIndicatorWindow.m -------------------------------------------------------------------------------- /GYMonitor/Utils/GYMonitorIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/Utils/GYMonitorIndicator.h -------------------------------------------------------------------------------- /GYMonitor/Utils/GYMonitorIndicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/Utils/GYMonitorIndicator.m -------------------------------------------------------------------------------- /GYMonitor/Utils/GYMonitorUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/Utils/GYMonitorUtils.h -------------------------------------------------------------------------------- /GYMonitor/Utils/GYMonitorUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/Utils/GYMonitorUtils.m -------------------------------------------------------------------------------- /GYMonitor/Utils/GYReportManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/Utils/GYReportManager.h -------------------------------------------------------------------------------- /GYMonitor/Utils/GYReportManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitor/Utils/GYReportManager.m -------------------------------------------------------------------------------- /GYMonitorExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitorExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GYMonitorExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitorExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GYMonitorExample.xcodeproj/xcuserdata/towerfeng.xcuserdatad/xcschemes/GYMonitorExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitorExample.xcodeproj/xcuserdata/towerfeng.xcuserdatad/xcschemes/GYMonitorExample.xcscheme -------------------------------------------------------------------------------- /GYMonitorExample.xcodeproj/xcuserdata/towerfeng.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitorExample.xcodeproj/xcuserdata/towerfeng.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /GYMonitorExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitorExample/AppDelegate.h -------------------------------------------------------------------------------- /GYMonitorExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitorExample/AppDelegate.m -------------------------------------------------------------------------------- /GYMonitorExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitorExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /GYMonitorExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitorExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /GYMonitorExample/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitorExample/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /GYMonitorExample/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitorExample/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /GYMonitorExample/GYRootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitorExample/GYRootViewController.h -------------------------------------------------------------------------------- /GYMonitorExample/GYRootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitorExample/GYRootViewController.m -------------------------------------------------------------------------------- /GYMonitorExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitorExample/Info.plist -------------------------------------------------------------------------------- /GYMonitorExample/Screenshots/run_script.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitorExample/Screenshots/run_script.jpg -------------------------------------------------------------------------------- /GYMonitorExample/Screenshots/slow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitorExample/Screenshots/slow.png -------------------------------------------------------------------------------- /GYMonitorExample/Screenshots/stack_mac.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitorExample/Screenshots/stack_mac.jpg -------------------------------------------------------------------------------- /GYMonitorExample/Screenshots/stack_sim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitorExample/Screenshots/stack_sim.png -------------------------------------------------------------------------------- /GYMonitorExample/Screenshots/stuck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitorExample/Screenshots/stuck.png -------------------------------------------------------------------------------- /GYMonitorExample/Screenshots/sym_ret.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitorExample/Screenshots/sym_ret.jpg -------------------------------------------------------------------------------- /GYMonitorExample/Screenshots/symblic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitorExample/Screenshots/symblic.jpg -------------------------------------------------------------------------------- /GYMonitorExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitorExample/main.m -------------------------------------------------------------------------------- /GYMonitorExample/rose_PNG642.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/GYMonitorExample/rose_PNG642.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/LICENSE -------------------------------------------------------------------------------- /Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/Launch Screen.storyboard -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/README.md -------------------------------------------------------------------------------- /dsymInfo/backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/dsymInfo/backup.py -------------------------------------------------------------------------------- /dsymInfo/反解堆栈.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/dsymInfo/反解堆栈.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /dsymInfo/反解堆栈.workflow/Contents/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/dsymInfo/反解堆栈.workflow/Contents/QuickLook/Preview.png -------------------------------------------------------------------------------- /dsymInfo/反解堆栈.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featuretower/GYMonitor/HEAD/dsymInfo/反解堆栈.workflow/Contents/document.wflow --------------------------------------------------------------------------------