Incident Identifier: 713DD27B-41EA-448C-B31A-A04D45A830C3
CrashReporter Key: FF40DB60-5617-B003-17F4-81E82DED1853
Hardware Model: MacBookPro18,2
Process: golangci-lint [88290]
Path: /Volumes/VOLUME/*/golangci-lint
Identifier: golangci-lint
Version: ???
Code Type: ARM-64 (Native)
Role: Unspecified
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Can be more or less complicated depending on your CLI needs. | |
| export HISTCONTROL=erasedups | |
| export HISTSIZE=5000 | |
| shopt -s histappend | |
| export VISUAL=less | |
| export EDITOR=vim | |
| export GIT_EDITOR="${EDITOR}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| function error { | |
| echo "$(tput setaf 1)ERROR: $1$(tput sgr0)" | |
| } | |
| function usage { | |
| echo "Usage: bundle-id.sh /path/to/App.{ipa | app}" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ``` | |
| INFO manager: Loading plugin `vagrant-vmware-desktop` with default require: `vagrant-vmware-desktop` | |
| could not load /opt/vagrant/embedded/rgloader/rgloader24.darwin: dlopen(/opt/vagrant/embedded/rgloader/rgloader24.darwin.bundle, 9): no suitable image found. Did find: | |
| /opt/vagrant/embedded/rgloader/rgloader24.darwin.bundle: code signature in (/opt/vagrant/embedded/rgloader/rgloader24.darwin.bundle) not valid for use in process using Library Validation: mapped file has no cdhash, completely unsigned? Code has to be at least ad-hoc signed. - /opt/vagrant/embedded/rgloader/rgloader24.darwin.bundle | |
| INFO manager: Loading plugin `vagrant-vmware-desktop` with slash require: `vagrant/vmware/desktop` | |
| ERROR manager: Plugin loading error: LoadError - cannot load such file -- vagrant/vmware/desktop | |
| ERROR vagrant: /opt/vagrant/embedded/gems/2.2.7/gems/vagrant-2.2.7/lib/vagrant/plugin/manager.rb:342:in `rescue in load_plugins' | |
| /opt/vagrant/embedded/gems/2.2.7/gems/vagrant-2.2.7/lib/vagrant/plugin/manager.rb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #import <XCTest/XCTest.h> | |
| #import "Screenshotter.h" | |
| @implementation Screenshotter | |
| + (void)screenshotWithTitle:(NSString *)format, ... { | |
| NSString *title = nil; | |
| va_list args; | |
| va_start(args, format); |
If your app becomes unresponsive during testing, check your device or simulator logs for an unusual or a high volume of NSLog output.
It has been demonstrated that a spike in NSLog output can cause the UIAutomation API to become unresponsive. This has been reproduced using the Instruments.app with applications that are not linked with the calabash.framework. This is an Apple bug.
- Plug in the device and open Xcode
- Choose Window -> Devices from the Xcode menu
- Under the DEVICES section in the left column, choose the device
- To see crash logs, select the View Device Logs button under the Device Information section on the right hand panel
- Find your app in the Process column and select the Crash log to see the contents.
- IMPORTANT Be sure to symbolicate your crash report.
- Export the symbolicated crash report.
NewerOlder