├── .gitignore ├── LICENSE.md ├── README.md ├── convertFromJSON.swift ├── docs └── apple_crash_report_format.pdf └── symbolicate.swift /.gitignore: -------------------------------------------------------------------------------- 1 | *.dSYM 2 | *.crash 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomieq/AppleCrashScripts/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomieq/AppleCrashScripts/HEAD/README.md -------------------------------------------------------------------------------- /convertFromJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomieq/AppleCrashScripts/HEAD/convertFromJSON.swift -------------------------------------------------------------------------------- /docs/apple_crash_report_format.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomieq/AppleCrashScripts/HEAD/docs/apple_crash_report_format.pdf -------------------------------------------------------------------------------- /symbolicate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomieq/AppleCrashScripts/HEAD/symbolicate.swift --------------------------------------------------------------------------------